Skip to content

Commit

Permalink
Merge pull request #32 from adafruit/pylint-fix
Browse files Browse the repository at this point in the history
Fixed linting
  • Loading branch information
tekktrik authored Nov 11, 2022
2 parents 0e2d351 + baf6aa1 commit ab0ffa9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion adafruit_drv2605.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,9 @@ class _DRV2605_Sequence:
:param DRV2605 DRV2605_instance: The DRV2605 instance
"""

def __init__(self, DRV2605_instance: DRV2605) -> None:
def __init__(
self, DRV2605_instance: DRV2605 # pylint: disable=invalid-name
) -> None:
self._drv2605 = DRV2605_instance

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

0 comments on commit ab0ffa9

Please sign in to comment.