Skip to content

Commit fa5b44e

Browse files
author
Jason Symons
committed
Move pylint exception on typing class
1 parent bc8ced5 commit fa5b44e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_espatcontrol/adafruit_espatcontrol_wifimanager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class Pixel(Protocol):
2626
requiring a pixel device (NeoPixel/DotStar)
2727
"""
2828

29-
def fill(
29+
def fill( # pylint: disable=unused-argument, no-self-use
3030
self, value: Union[int, Tuple[int, int, int]]
31-
) -> Any: # pylint: disable=unused-argument, no-self-use
31+
) -> Any:
3232
"""
3333
Duck types out the fill method for pixel devices
3434
"""

0 commit comments

Comments
 (0)