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.

bricknil.sensor   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 0
1
2
from .sensor import \
3
        VisionSensor, InternalTiltSensor, ExternalMotionSensor, \
4
        ExternalTiltSensor, RemoteButtons, Button, \
5
        CurrentSensor, VoltageSensor,  \
6
        DuploSpeedSensor, DuploVisionSensor
7
8
from .motor import InternalMotor, ExternalMotor, TrainMotor, WedoMotor, DuploTrainMotor
9
10
from .light import LED, Light
11
from .sound import DuploSpeaker
12
13
14