We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8fbd0b commit 89bdaa5Copy full SHA for 89bdaa5
cibuildwheel/extra.py
@@ -55,6 +55,7 @@ def github_api_request(path: str, *, max_retries: int = 3) -> dict[str, Any]:
55
return typing.cast(dict[str, Any], json.load(response))
56
57
except (urllib.error.URLError, TimeoutError) as e:
58
+ # pylint: disable=E1101
59
if max_retries > 0:
60
if (
61
isinstance(e, urllib.error.HTTPError)
0 commit comments