diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 11:37:18 +0300 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-10 11:37:18 +0300 |
commit | a5121e7a0623db328a9462d340d389ed6737374a (patch) | |
tree | 2fa6051d457555ef2d61793af2756a44c0ea221c /modules/upscaler.py | |
parent | 550256db1ce18778a9d56ff343d844c61b9f9b83 (diff) |
fixes for B007
Diffstat (limited to 'modules/upscaler.py')
-rw-r--r-- | modules/upscaler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/upscaler.py b/modules/upscaler.py index e145be30..8acb6e96 100644 --- a/modules/upscaler.py +++ b/modules/upscaler.py @@ -55,7 +55,7 @@ class Upscaler: dest_w = int(img.width * scale) dest_h = int(img.height * scale) - for i in range(3): + for _ in range(3): shape = (img.width, img.height) img = self.do_upscale(img, selected_model) |