dashboard/core/led.py
Showing 4 of 4 total issues
Function start
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
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)
- Read upRead up
Function turn_on
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
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)
- Read upRead up
Function turn_on
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def turn_on(self, result_percent, led_total, total_percent, led, led_output, output):
Function linear_function
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
def linear_function(self, x, in_min, in_max, out_min, out_max):