From 1e915f5b00cbcd961fbd4ffb2be374814f6b22b0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 6 Jan 2026 07:38:29 +0530 Subject: [PATCH] ... --- setup/win-ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/win-ci.py b/setup/win-ci.py index f1ad59ff66..979f282d5d 100644 --- a/setup/win-ci.py +++ b/setup/win-ci.py @@ -16,7 +16,7 @@ def printf(*args, **kw): sys.stdout.flush() -def download_with_retry(url: str | Request, count: int = 5) -> bytes: +def download_with_retry(url: 'str | Request', count: int = 5) -> bytes: for i in range(count): try: print('Downloading', getattr(url, 'full_url', url), flush=True)