We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4207e24 commit 8201531Copy full SHA for 8201531
Final2x_core/SRqueue.py
@@ -30,7 +30,7 @@ def sr_queue(config: SRConfig) -> None:
30
save_format = "." + save_format
31
32
for img_path in input_path:
33
- base_stem = Path(f"{config.target_scale}x-{Path(img_path).name}").stem
+ base_stem = f"{config.target_scale}x-{Path(img_path).stem}"
34
save_path = str(output_path / (base_stem + save_format))
35
i: int = 0
36
while Path(save_path).is_file():
0 commit comments