Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Jul 2, 2024
1 parent 5192825 commit 3326675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fix_lwjgl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ async def download_file(
):
raise OSError(f'"{filename}" does not exist according to "{url}"!')
# Could have aiofiles dependency and fix this, but I would rather not.
with open(filepath, "wb") as sfile: # noqa: ASYNC101 # sync `open`
with open(filepath, "wb") as sfile: # sync `open`
sfile.write(data)
return filepath

Expand Down

0 comments on commit 3326675

Please sign in to comment.