[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2023-11-09 18:09:31 +00:00
parent 7483a2456e
commit de6d66414a
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class Downloader:
if data:
resp = adapter.controller.serializer.loads(None, data)
filepath = os.path.join(location, link.filename)
with open(filepath, 'wb') as content_file:
with open(filepath, "wb") as content_file:
content_file.write(resp.data)
return filepath
except Exception: