Skip to content

Commit ab0ffa9

Browse files
authored
Merge pull request #32 from adafruit/pylint-fix
Fixed linting
2 parents 0e2d351 + baf6aa1 commit ab0ffa9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_drv2605.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,9 @@ class _DRV2605_Sequence:
310310
:param DRV2605 DRV2605_instance: The DRV2605 instance
311311
"""
312312

313-
def __init__(self, DRV2605_instance: DRV2605) -> None:
313+
def __init__(
314+
self, DRV2605_instance: DRV2605 # pylint: disable=invalid-name
315+
) -> None:
314316
self._drv2605 = DRV2605_instance
315317

316318
def __setitem__(self, slot: int, effect: Union[Effect, Pause]) -> None:

0 commit comments

Comments
 (0)