matiasmenares/Nissboard

View on GitHub
dashboard/core/ecu.py

Summary

Maintainability
B
5 hrs
Test Coverage

Showing 3 of 3 total issues

Ecu has 27 functions (exceeds 20 allowed). Consider refactoring.
Open

class Ecu():
 
def __init__(self, devise_pah, socketio, enviroment, serial_class):
self.PORT = None
self.running = False
Severity: Minor
Found in dashboard/core/ecu.py - About 3 hrs to fix

    Function handleData has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def handleData(self, data, byteExpected):
    try:
    current_data = []
    frameStarted = False
    for i in range(len(data)):
    Severity: Minor
    Found in dashboard/core/ecu.py - About 1 hr to fix

    Function start_production has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def start_production(self):
    READ_THREAD = False
    try:
    while READ_THREAD == False and self.running == False:
    #Send echo -e -n '\x10' > /dev/ttys006
    Severity: Minor
    Found in dashboard/core/ecu.py - About 55 mins to fix
    Category
    Status