Skip to content

Commit dbc46d9

Browse files
Melissa LeBlanc-WilliamsMelissa LeBlanc-Williams
Melissa LeBlanc-Williams
authored and
Melissa LeBlanc-Williams
committed
linting
1 parent 40246b5 commit dbc46d9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adafruit_featherwing/minitft_featherwing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class MiniTFTFeatherWing:
6363
(1 << BUTTON_SEL) |
6464
(1 << BUTTON_A) |
6565
(1 << BUTTON_B))
66-
66+
#pylint: disable-msg=too-many-arguments
6767
def __init__(self, address=0x5E, i2c=None, spi=None, cs=None, dc=None):
6868
if i2c is None:
6969
i2c = board.I2C()
@@ -88,6 +88,7 @@ def __init__(self, address=0x5E, i2c=None, spi=None, cs=None, dc=None):
8888
self.display = ST7735R(display_bus, width=160, height=80, colstart=24,
8989
rotation=270, bgr=True)
9090
self._ss.pin_mode_bulk(self._button_mask, self._ss.INPUT_PULLUP)
91+
#pylint: enable-msg=too-many-arguments
9192

9293
@property
9394
def backlight(self):

0 commit comments

Comments
 (0)