Skip to content

Commit

Permalink
🤦
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshix-1 committed Mar 31, 2024
1 parent f225967 commit 26a7f4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion an_website/update/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_module_info() -> ModuleInfo:

def write_from_queue(file: IO[bytes], queue: SimpleQueue[None | bytes]) -> None:
"""Read from a queue and write to a file."""
while if (chunk := queue.get()) is None: # pylint: disable=while-used
while (chunk := queue.get()) is None: # pylint: disable=while-used
file.write(chunk)


Expand Down

0 comments on commit 26a7f4b

Please sign in to comment.