Skip to content

Commit 12a4167

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_epd/epd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class Adafruit_EPD(object):
1414

1515
# pylint: disable=too-many-arguments
1616
def __init__(self, width, height, rst_pin, dc_pin, busy_pin, srcs_pin, cs_pin, spi):
17-
# pylint: enable=too-many-arguments
1817
self.width = width
1918
self.height = height
2019

@@ -37,6 +36,7 @@ def __init__(self, width, height, rst_pin, dc_pin, busy_pin, srcs_pin, cs_pin, s
3736
self.spi_device = spi
3837

3938
self.sram = mcp_sram.Adafruit_MCP_SRAM(srcs_pin, spi)
39+
# pylint: enable=too-many-arguments
4040

4141
def begin(self, reset=True):
4242
self._cs.value = True

0 commit comments

Comments
 (0)