diff options
Diffstat (limited to 'modules/processing.py')
-rw-r--r-- | modules/processing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/processing.py b/modules/processing.py index 7e6cd8ee..816fdd18 100644 --- a/modules/processing.py +++ b/modules/processing.py @@ -176,7 +176,7 @@ def process_images(p: StableDiffusionProcessing) -> Processed: all_prompts = p.batch_size * p.n_iter * [p.prompt]
if type(p.seed) == list:
- all_seeds = int(p.seed)
+ all_seeds = p.seed
else:
all_seeds = [int(p.seed + x) for x in range(len(all_prompts))]
|