Skip to content

Commit baebe36

Browse files
committed
fix lint
1 parent 59065e4 commit baebe36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inoreader/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def download_image(url, path, filename, proxies=None):
5757
if suffix == 'svg+xml':
5858
suffix = 'svg'
5959

60-
image_filename = f'{filename}.{suffix}'
60+
image_filename = filename + '.' + suffix
6161
with open(os.path.join(path, image_filename), 'wb') as f:
6262
response.raw.decode_content = True
6363
shutil.copyfileobj(response.raw, f)

0 commit comments

Comments
 (0)