Skip to content

Commit

Permalink
Update gen_img.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DKnight54 authored Jan 29, 2025
1 parent fa444fa commit 6a65396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gen_img.py
Original file line number Diff line number Diff line change
Expand Up @@ -2677,7 +2677,7 @@ def scale_and_round(x):
if m: # seed
if pi > 0 and len(raw_prompts) > 1: #Bypass od 2nd loop for dynamic prompts
continue
seeds = [int(d) for d in m.group(1).split(",")]
seeds = [int(float(d)) for d in m.group(1).split(",")]
logger.info(f"seeds: {seeds}")
continue

Expand Down

0 comments on commit 6a65396

Please sign in to comment.