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