diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-19 09:41:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 09:41:29 +0000 |
commit | dfb3b8f398239876cdfc03657680e50c76a1fed8 (patch) | |
tree | 30b5b4e5a179e9d88e75ac0abdcf0090e1c74397 /modules/api/api.py | |
parent | edb10092de516dda5271130ed53628387780a859 (diff) | |
parent | 43137773227344dd79b56c227dbc9fb54ac7c337 (diff) | |
download | stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.tar.gz stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.tar.bz2 stable-diffusion-webui-gfx803-dfb3b8f398239876cdfc03657680e50c76a1fed8.zip |
Merge branch 'master' into weighted-learning
Diffstat (limited to 'modules/api/api.py')
-rw-r--r-- | modules/api/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/api/api.py b/modules/api/api.py index eb7b1da5..5a9ac5f1 100644 --- a/modules/api/api.py +++ b/modules/api/api.py @@ -498,7 +498,7 @@ class Api: if not apply_optimizations: sd_hijack.undo_optimizations() try: - hypernetwork, filename = train_hypernetwork(*args) + hypernetwork, filename = train_hypernetwork(**args) except Exception as e: error = e finally: |