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.
Passed
Push — master ( b11aa0...f7c16c )
by Benjamin
01:28
created

Configure.get_config()   A

Complexity

Conditions 1

Size

Total Lines 2

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 2
rs 10
1
import yaml
2
3
4
class Configure(object):
5
    def __init__(self):
6
        self.config = None
7
        self.read_file()
8
9
    def get_config(self):
10
        return self.config
11
12
    def read_file(self): pass
13