Skip to content

Commit

Permalink
Merge pull request #12 from adafruit/discord-fix
Browse files Browse the repository at this point in the history
Should fix pylint failure
  • Loading branch information
kattni committed Jul 9, 2020
2 parents 2b3e504 + 747ad0a commit f4927fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_rgbled.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def __exit__(self, exception_type, exception_value, traceback):
def deinit(self):
"""Turn the LEDs off, deinit pwmout and release hardware resources."""
for pin in self._rgb_led_pins:
pin.deinit() # pylint: no-member
pin.deinit() # pylint: disable=no-member
self._current_color = (0, 0, 0)

@property
Expand Down

0 comments on commit f4927fe

Please sign in to comment.