matiasmenares/Nissboard

View on GitHub
dashboard/core/accelerometer.py

Summary

Maintainability
A
50 mins
Test Coverage

Showing 2 of 2 total issues

Function compass has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def compass(self):
while True:
self.update()
mag = self.mag
declinacion = -4.14
Severity: Minor
Found in dashboard/core/accelerometer.py - About 25 mins to fix

Function need_reset has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
Open

def need_reset(self):
if(datetime.now() > (self.timer + timedelta(seconds=3))):
self.timer = datetime.now()
v_config = VarConfigModel.query.get(1)
if v_config.var_value == "1":
Severity: Minor
Found in dashboard/core/accelerometer.py - About 25 mins to fix
Category
Status