Skip to content

Commit bb1bf82

Browse files
author
Melissa LeBlanc-Williams
committed
Final Linting
1 parent c5522d5 commit bb1bf82

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_featherwing/neopixel_featherwing.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def __init__(self, pixel_pin=board.D6, brightness=0.1):
5454
pixel_order=neopixel.GRB)
5555
#pylint: enable-msg=super-init-not-called
5656

57+
#pylint: disable-msg=useless-super-delegation
5758
def fill(self, color=0):
5859
"""
5960
Fills all of the NeoPixels with a color or unlit if empty.
@@ -165,6 +166,7 @@ def shift_left(self, rotate=False):
165166
166167
"""
167168
super().shift_left(rotate)
169+
#pylint: enable-msg=useless-super-delegation
168170

169171
def shift_up(self, rotate=False):
170172
"""
@@ -280,4 +282,4 @@ def brightness(self):
280282
neopixel.brightness = 0.3
281283
282284
"""
283-
return super().brightness
285+
return super().brightness

0 commit comments

Comments
 (0)