aboutsummaryrefslogtreecommitdiff
path: root/extensions-builtin
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-12-25 09:16:08 +0300
committerGitHub <noreply@github.com>2022-12-25 09:16:08 +0300
commitb12de850ae8bcd6f99817c6622b4cd2f04410ff5 (patch)
treedf26b5510f07b645e7edf68c47220f595ef5a538 /extensions-builtin
parenta66514e1a35a3d140e6242e553b5fd0c5bec42f4 (diff)
parent3bf5591efe9a9f219c6088be322a87adc4f48f95 (diff)
Merge pull request #5992 from yuvalabou/F541
Fix F541: f-string without any placeholders
Diffstat (limited to 'extensions-builtin')
-rw-r--r--extensions-builtin/LDSR/ldsr_model_arch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions-builtin/LDSR/ldsr_model_arch.py b/extensions-builtin/LDSR/ldsr_model_arch.py
index f5bd8ae4..0ad49f4e 100644
--- a/extensions-builtin/LDSR/ldsr_model_arch.py
+++ b/extensions-builtin/LDSR/ldsr_model_arch.py
@@ -26,7 +26,7 @@ class LDSR:
global cached_ldsr_model
if shared.opts.ldsr_cached and cached_ldsr_model is not None:
- print(f"Loading model from cache")
+ print("Loading model from cache")
model: torch.nn.Module = cached_ldsr_model
else:
print(f"Loading model from {self.modelPath}")