You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 6, 2026. It is now read-only.
Environment details
Steps to reproduce
This is fairly tiny and relates to a typing issue.
timeoutis documented asOptional[float]but only typed asfloat. E.g.python-bigquery/google/cloud/bigquery/job/query.py
Line 1395 in 0bf9546
python-bigquery/google/cloud/bigquery/job/query.py
Lines 1415 to 1419 in 0bf9546
and also at
python-bigquery/google/cloud/bigquery/job/base.py
Line 884 in a2520ca
python-bigquery/google/cloud/bigquery/job/base.py
Lines 892 to 896 in a2520ca
The type check is ignored in both cases which may explain this?
python-bigquery/google/cloud/bigquery/job/query.py
Line 1390 in 0bf9546
python-bigquery/google/cloud/bigquery/job/base.py
Line 883 in a2520ca
This makes the functions slightly annoying to use if one passes an
Optional[float]on.