style: Format code with linter

This commit is contained in:
Paul Gauthier (aider) 2025-03-26 07:11:22 -10:00
parent 51bf6035f7
commit 6ffe3e7067

View file

@ -59,7 +59,7 @@ def generate_confetti(count=150, width=DEFAULT_WIDTH, height=DEFAULT_HEIGHT):
footer_safe_zone_x_min = width * 0.25
footer_safe_zone_x_max = width * 0.75
footer_safe_zone_y_min = height - 100 # 100px from bottom
footer_safe_zone_y_max = height # Bottom of image
footer_safe_zone_y_max = height # Bottom of image
# Keep trying until we have enough confetti pieces
attempts = 0
@ -73,8 +73,12 @@ def generate_confetti(count=150, width=DEFAULT_WIDTH, height=DEFAULT_HEIGHT):
y = random.randint(0, height)
# Skip if the position is in either of the safe zones
if ((safe_zone_x_min < x < safe_zone_x_max) and (safe_zone_y_min < y < safe_zone_y_max)) or \
((footer_safe_zone_x_min < x < footer_safe_zone_x_max) and (footer_safe_zone_y_min < y < footer_safe_zone_y_max)):
if (
(safe_zone_x_min < x < safe_zone_x_max) and (safe_zone_y_min < y < safe_zone_y_max)
) or (
(footer_safe_zone_x_min < x < footer_safe_zone_x_max)
and (footer_safe_zone_y_min < y < footer_safe_zone_y_max)
):
continue
confetti_count += 1