Skip to content

Commit

Permalink
fix wrong indentation
Browse files Browse the repository at this point in the history
see discussion in #333
  • Loading branch information
Audionut committed Feb 8, 2025
1 parent fa16dc4 commit d58c62d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/uploadscreens.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ def extract_numeric_suffix(filename):
if meta['debug']:
console.print("image globs (sorted):", image_glob)

existing_images = [img for img in meta['image_list'] if img.get('img_url') and img.get('web_url')]
existing_count = len(existing_images)
existing_images = [img for img in meta['image_list'] if img.get('img_url') and img.get('web_url')]
existing_count = len(existing_images)

if not retry_mode:
images_needed = max(0, total_screens - existing_count)
Expand Down

0 comments on commit d58c62d

Please sign in to comment.