Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 058672e

Browse files
committedJan 31, 2020
Added pylint disable comment
1 parent 4e746e1 commit 058672e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎adafruit_led_animation/animation.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,8 @@ class SparklePulse(Animation):
378378
:param max_intensity: The maximum intensity to pulse, between 0 and 1.0. Default 1.
379379
:param min_intensity: The minimum intensity to pulse, between 0 and 1.0. Default 0.
380380
"""
381+
382+
# pylint: disable=too-many-arguments
381383
def __init__(self, pixel_object, speed, color, period=5, max_intensity=1, min_intensity=0):
382384
if len(pixel_object) < 2:
383385
raise ValueError("Sparkle needs at least 2 pixels")

0 commit comments

Comments
 (0)
Please sign in to comment.