another try for the last pylint error
This commit is contained in:
parent
af83bf3cde
commit
d4483b0d1d
1 changed files with 1 additions and 1 deletions
|
|
@ -640,7 +640,7 @@ class Paint(): # pylint: disable=too-many-statements
|
|||
MARKER = 8 # Marker for filled areas
|
||||
print(f"Filling at ({x}, {y}) with color {c}")
|
||||
|
||||
if self._fg_bitmap[x, y] != c: # pylint: disable=too-many-statements
|
||||
if self._fg_bitmap[x, y] != c: # pylint: disable=disable=too-many-nested-blocks
|
||||
blank_color = self._fg_bitmap[x, y]
|
||||
self._fg_bitmap[x, y] = MARKER
|
||||
done = False
|
||||
|
|
|
|||
Loading…
Reference in a new issue