Type standardization in processing_class

This commit is contained in:
awsr
2026-01-21 16:35:19 -08:00
parent 6344db1b09
commit 2f8976e28d
6 changed files with 19 additions and 20 deletions
+6 -7
View File
@@ -308,15 +308,14 @@ class StableDiffusionProcessing:
shared.log.error(f'Override: {override_settings} {e}')
self.override_settings = {}
# null items initialized later
self.prompts = None
self.negative_prompts = None
self.all_prompts = None
self.all_negative_prompts = None
self.prompts = []
self.negative_prompts = []
self.all_prompts = []
self.all_negative_prompts = []
self.seeds = []
self.subseeds = []
self.all_seeds = None
self.all_subseeds = None
self.all_seeds = []
self.all_subseeds = []
# a1111 compatibility items
self.seed_enable_extras: bool = True