From 26a7f4bfdfaf90ec08fc126ed2d841ae5329dc03 Mon Sep 17 00:00:00 2001 From: Joshix Date: Sun, 31 Mar 2024 23:00:00 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- an_website/update/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/an_website/update/update.py b/an_website/update/update.py index f55b2ff41..85ec7bf08 100644 --- a/an_website/update/update.py +++ b/an_website/update/update.py @@ -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)