Skip to content

Commit d4483b0

Browse files
committed
another try for the last pylint error
1 parent af83bf3 commit d4483b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Fruit_Jam/Fruit_Jam_PyPaint/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ def _fill(self, x, y, c): # pylint: disable=too-many-branches,too-many-locals
640640
MARKER = 8 # Marker for filled areas
641641
print(f"Filling at ({x}, {y}) with color {c}")
642642

643-
if self._fg_bitmap[x, y] != c: # pylint: disable=too-many-statements
643+
if self._fg_bitmap[x, y] != c: # pylint: disable=disable=too-many-nested-blocks
644644
blank_color = self._fg_bitmap[x, y]
645645
self._fg_bitmap[x, y] = MARKER
646646
done = False

0 commit comments

Comments
 (0)