Skip to content

Commit d49b072

Browse files
committed
DM: disable too many args for pylint
1 parent 49898a6 commit d49b072

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

adafruit_epd/epd.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ class Adafruit_EPD(object):
1212
DARK = 4
1313
LIGHT = 5
1414

15+
# pylint: disable=too-many-arguments
1516
def __init__(self, width, height, rst_pin, dc_pin, busy_pin, srcs_pin, cs_pin, spi):
17+
# pylint: enable=too-many-arguments
1618
self.width = width
1719
self.height = height
1820

adafruit_epd/il0373.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@
2929
IL0373_VCM_DC_SETTING = const(0x82)
3030

3131
class Adafruit_IL0373(Adafruit_EPD):
32+
# pylint: disable=too-many-arguments
3233
def __init__(self, width, height, rst_pin, dc_pin, busy_pin, srcs_pin, cs_pin, spi):
34+
# pylint: enable=too-many-arguments
3335
super(Adafruit_IL0373, self).__init__(width, height, rst_pin, dc_pin, busy_pin,
3436
srcs_pin, cs_pin, spi)
3537

0 commit comments

Comments
 (0)