aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sd_vae.py
diff options
context:
space:
mode:
authorYuval Aboulafia <yuval.abou@gmail.com>2022-12-24 19:35:29 +0000
committerYuval Aboulafia <yuval.abou@gmail.com>2022-12-24 19:35:29 +0000
commit3bf5591efe9a9f219c6088be322a87adc4f48f95 (patch)
tree187e06ab5a4e78d3d732343331c0e375eac88395 /modules/sd_vae.py
parent5927d3fa95e9ae43252d598f7791ca26cfcad5e3 (diff)
downloadstable-diffusion-webui-gfx803-3bf5591efe9a9f219c6088be322a87adc4f48f95.tar.gz
stable-diffusion-webui-gfx803-3bf5591efe9a9f219c6088be322a87adc4f48f95.tar.bz2
stable-diffusion-webui-gfx803-3bf5591efe9a9f219c6088be322a87adc4f48f95.zip
fix F541 f-string without any placeholders
Diffstat (limited to 'modules/sd_vae.py')
-rw-r--r--modules/sd_vae.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_vae.py b/modules/sd_vae.py
index 25638a83..3856418e 100644
--- a/modules/sd_vae.py
+++ b/modules/sd_vae.py
@@ -208,5 +208,5 @@ def reload_vae_weights(sd_model=None, vae_file="auto"):
if not shared.cmd_opts.lowvram and not shared.cmd_opts.medvram:
sd_model.to(devices.device)
- print(f"VAE Weights loaded.")
+ print("VAE Weights loaded.")
return sd_model