diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-26 03:36:06 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-26 03:36:06 +0000 |
commit | ae36e0899fe912cd701fc4bae5c9d0ce9a5b3e41 (patch) | |
tree | fe98e5387b8ee35df26d5144ef8f0b8956887f97 /modules/scripts.py | |
parent | d0bf509fa14babebedbaef121ef54599003aa457 (diff) | |
download | stable-diffusion-webui-gfx803-ae36e0899fe912cd701fc4bae5c9d0ce9a5b3e41.tar.gz stable-diffusion-webui-gfx803-ae36e0899fe912cd701fc4bae5c9d0ce9a5b3e41.tar.bz2 stable-diffusion-webui-gfx803-ae36e0899fe912cd701fc4bae5c9d0ce9a5b3e41.zip |
alternative solution for infotext issue
Diffstat (limited to 'modules/scripts.py')
-rw-r--r-- | modules/scripts.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/scripts.py b/modules/scripts.py index 5b4edcac..1049740d 100644 --- a/modules/scripts.py +++ b/modules/scripts.py @@ -17,8 +17,12 @@ class PostprocessImageArgs: class PostprocessBatchListArgs:
- def __init__(self, images):
+ def __init__(self, images, prompts, negative_prompts, seeds, subseeds):
self.images = images
+ self.prompts = prompts
+ self.negative_prompts = negative_prompts
+ self.seeds = seeds
+ self.subseeds = subseeds
class Script:
|