From 24319aac5d5cc1437229c6cef66dc19cc945acf5 Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Mon, 7 Nov 2022 20:34:04 -0500 Subject: [PATCH] Fix pylint errors --- adafruit_led_animation/animation/chase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/adafruit_led_animation/animation/chase.py b/adafruit_led_animation/animation/chase.py index 39dd1d2..f5168d7 100644 --- a/adafruit_led_animation/animation/chase.py +++ b/adafruit_led_animation/animation/chase.py @@ -111,7 +111,8 @@ def bar_color(self, n, pixel_no=0): # pylint: disable=unused-argument """ return self.color - def space_color(self, n, pixel_no=0): # pylint: disable=unused-argument + @staticmethod + def space_color(n, pixel_no=0): # pylint: disable=unused-argument """ Generate the spacing color for the n'th bar_color in the Chase