matiasmenares/Nissboard

View on GitHub
dashboard/core/led.py

Summary

Maintainability
A
3 hrs
Test Coverage

Showing 4 of 4 total issues

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

def start(self, outputs):
for led in self.leds:
output = self.find_output(outputs, led.channel_output_id)
# for led_output in LedOutput.query.filter_by(led_id=led.id):
# self.on(led, led_output, output)
Severity: Minor
Found in dashboard/core/led.py - About 1 hr to fix

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

def turn_on(self, result_percent, led_total, total_percent, led, led_output, output):
start = Color(led_output.color_start.name)
colors = list(start.range_to(Color(led_output.color_end.name), led_total))
for led_strip in range((led_output.led_start-1), (led_output.led_end)):
rgb = self.get_rgb(colors, led_strip)
Severity: Minor
Found in dashboard/core/led.py - About 55 mins to fix

Function turn_on has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

def turn_on(self, result_percent, led_total, total_percent, led, led_output, output):
Severity: Minor
Found in dashboard/core/led.py - About 45 mins to fix

    Function linear_function has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def linear_function(self, x, in_min, in_max, out_min, out_max):
    Severity: Minor
    Found in dashboard/core/led.py - About 35 mins to fix
      Category
      Status