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
Push — master ( cc823b...3d112a )
by PyJobs
9s
created

Globals.__init__()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
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