mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-06 18:40:49 -08:00
suggestions and fixes from the PR
This commit is contained in:
parent
d25219b7e8
commit
3ec7b705c7
11 changed files with 16 additions and 31 deletions
|
|
@ -124,7 +124,7 @@ class ScriptPostprocessingRunner:
|
|||
script_args = args[script.args_from:script.args_to]
|
||||
|
||||
process_args = {}
|
||||
for (name, component), value in zip(script.controls.items(), script_args): # noqa B007
|
||||
for (name, _component), value in zip(script.controls.items(), script_args):
|
||||
process_args[name] = value
|
||||
|
||||
script.process(pp, **process_args)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue