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.
Test Setup Failed
Push — master ( b8ae6a...dff9b6 )
by Benjamin
01:15
created

SpeedOfPi.loop()   A

Complexity

Conditions 1

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
c 0
b 0
f 0
dl 0
loc 1
rs 10
1
import os
2
import time
3
import smbus
4
import yaml
5
6
7
class SpeedOfPi(object):
8
9
    def __init__(self):
10
        bus = smbus.SMBus(1)
11
12
    def create_nodes(self): pass
13
14
    def get_config(self): pass
15
16
    def set_config(self): pass
17
18
    def multi_player(self): pass
19
20
    def single_player(self): pass
21
22
    def loop(self): pass
23
24