File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 12
12
All text above must be included in any redistribution.
13
13
"""
14
14
15
- #pylint:disable=invalid-name, no-self-use, too-many-statements
15
+ #pylint:disable=invalid-name, no-self-use
16
16
17
17
import gc
18
18
import time
@@ -146,9 +146,9 @@ def set_cursor_bitmap(self, bmp):
146
146
self .poke ()
147
147
148
148
################################################################################
149
-
150
149
class Paint (object ):
151
150
151
+ #pylint:disable=too-many-statements
152
152
def __init__ (self , display = board .DISPLAY ):
153
153
self ._logger = logging .getLogger ("Paint" )
154
154
self ._logger .setLevel (logging .DEBUG )
@@ -219,6 +219,7 @@ def __init__(self, display=board.DISPLAY):
219
219
self ._last_location = None
220
220
221
221
self ._pencolor = 7
222
+ #pylint:enable=too-many-statements
222
223
223
224
def _make_palette (self ):
224
225
self ._palette_bitmap = displayio .Bitmap (self ._w // 10 , self ._h , 5 )
You can’t perform that action at this time.
0 commit comments