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)