Skip to content

Commit 1ffdb6e

Browse files
committed
linting didn't work, trying again
1 parent e9fcbbe commit 1ffdb6e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

CircuitPython_PyPaint/code.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
All text above must be included in any redistribution.
1313
"""
1414

15-
#pylint:disable=invalid-name, no-self-use, too-many-statements
15+
#pylint:disable=invalid-name, no-self-use
1616

1717
import gc
1818
import time
@@ -146,9 +146,9 @@ def set_cursor_bitmap(self, bmp):
146146
self.poke()
147147

148148
################################################################################
149-
150149
class Paint(object):
151150

151+
#pylint:disable=too-many-statements
152152
def __init__(self, display=board.DISPLAY):
153153
self._logger = logging.getLogger("Paint")
154154
self._logger.setLevel(logging.DEBUG)
@@ -219,6 +219,7 @@ def __init__(self, display=board.DISPLAY):
219219
self._last_location = None
220220

221221
self._pencolor = 7
222+
#pylint:enable=too-many-statements
222223

223224
def _make_palette(self):
224225
self._palette_bitmap = displayio.Bitmap(self._w // 10, self._h, 5)

0 commit comments

Comments
 (0)