Skip to content

Commit 3d2ad78

Browse files
authored
corrected pylint: enable location
1 parent 12a4167 commit 3d2ad78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_epd/il0373.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
class Adafruit_IL0373(Adafruit_EPD):
3232
# pylint: disable=too-many-arguments
3333
def __init__(self, width, height, rst_pin, dc_pin, busy_pin, srcs_pin, cs_pin, spi):
34-
# pylint: enable=too-many-arguments
3534
super(Adafruit_IL0373, self).__init__(width, height, rst_pin, dc_pin, busy_pin,
3635
srcs_pin, cs_pin, spi)
3736

3837
self.bw_bufsize = int(width * height / 8)
3938
self.red_bufsize = int(width * height / 8)
4039

4140
self.begin()
41+
# pylint: enable=too-many-arguments
4242

4343
def begin(self, reset=True):
4444
super(Adafruit_IL0373, self).begin(reset)

0 commit comments

Comments
 (0)