Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct type checking #1848

Merged
merged 4 commits into from
Mar 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
Update google/cloud/bigquery/job/query.py
  • Loading branch information
chalmerlowe committed Mar 11, 2024
commit 081267da455ec5ce76d4f279970cd4a06437f5c5
2 changes: 1 addition & 1 deletion google/cloud/bigquery/job/query.py
Expand Up @@ -1409,7 +1409,7 @@ def _reload_query_results(
# Python_API_core, as part of a major rewrite of the deadline, timeout,
# retry process sets the timeout value as a Python object().
# Our system does not natively handle that and instead expects
# either none or a numeric value. If passed a Python object, convert to
# either None or a numeric value. If passed a Python object, convert to
# None.
if type(self._done_timeout) is object: # pragma: NO COVER
self._done_timeout = None
Expand Down