diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-06-27 06:05:53 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 06:05:53 +0000 |
commit | 4147fd6b2f905f76c6bc20c3d9de2ea0842fa853 (patch) | |
tree | e7915af4d068912cd8509f1638e05460445a5eea /modules/sd_hijack_clip_old.py | |
parent | f603275d84301b5ee952683e951dd1aad72ba615 (diff) | |
parent | bedcd2f377a38ef4da58c11dbe222d32b954be2f (diff) | |
download | stable-diffusion-webui-gfx803-4147fd6b2f905f76c6bc20c3d9de2ea0842fa853.tar.gz stable-diffusion-webui-gfx803-4147fd6b2f905f76c6bc20c3d9de2ea0842fa853.tar.bz2 stable-diffusion-webui-gfx803-4147fd6b2f905f76c6bc20c3d9de2ea0842fa853.zip |
Merge branch 'dev' into 10141-gradio-user-exif
Diffstat (limited to 'modules/sd_hijack_clip_old.py')
-rw-r--r-- | modules/sd_hijack_clip_old.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_hijack_clip_old.py b/modules/sd_hijack_clip_old.py index a3476e95..c5c6270b 100644 --- a/modules/sd_hijack_clip_old.py +++ b/modules/sd_hijack_clip_old.py @@ -74,7 +74,7 @@ def forward_old(self: sd_hijack_clip.FrozenCLIPEmbedderWithCustomWordsBase, text self.hijack.comments += hijack_comments
- if len(used_custom_terms) > 0:
+ if used_custom_terms:
embedding_names = ", ".join(f"{word} [{checksum}]" for word, checksum in used_custom_terms)
self.hijack.comments.append(f"Used embeddings: {embedding_names}")
|