Skip to content

Commit

Permalink
Remove empty space.
Browse files Browse the repository at this point in the history
Remove empty space.
  • Loading branch information
xzripper authored Mar 26, 2024
1 parent 983da36 commit 7678a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion draw.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def draw_more_black_r_white(image_path: str, area: tuple, threshold: int, invers
pixels_drawn = 0

for y in range(area[1]):
for x in range(area[0]):
for x in range(area[0]):
if _utils.get_value('request_stop') or is_pressed('F5'): break

b, g, r = image[y, x]
Expand Down

0 comments on commit 7678a94

Please sign in to comment.