fix F541 f-string without any placeholders

This commit is contained in:
Yuval Aboulafia
2022-12-24 21:35:29 +02:00
parent 5927d3fa95
commit 3bf5591efe
10 changed files with 18 additions and 18 deletions

View File

@@ -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}")