GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#5)
by Bastien
01:09
created

pyjobsweb.lib.Globals   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %
Metric Value
wmc 1
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A Globals.__init__() 0 3 1
1
# -*- coding: utf-8 -*-
2
3
"""The application's Globals object"""
4
5
__all__ = ['Globals']
6
7
8
class Globals(object):
9
    """Container for objects available throughout the life of the application.
10
11
    One instance of Globals is created during application initialization and
12
    is available during requests via the 'app_globals' variable.
13
14
    """
15
16
    def __init__(self):
17
        """Do nothing, by default."""
18
        pass
19