dashboard/core/ecu.py
Showing 3 of 3 total issues
Ecu
has 27 functions (exceeds 20 allowed). Consider refactoring. Open
Open
class Ecu(): def __init__(self, devise_pah, socketio, enviroment, serial_class): self.PORT = None self.running = False
Function handleData
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
Open
def handleData(self, data, byteExpected): try: current_data = [] frameStarted = False for i in range(len(data)):
- Read upRead up
Function start_production
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
def start_production(self): READ_THREAD = False try: while READ_THREAD == False and self.running == False: #Send echo -e -n '\x10' > /dev/ttys006
- Read upRead up