We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 641a712 commit 2660dbdCopy full SHA for 2660dbd
google/cloud/bigquery/job/query.py
@@ -1409,9 +1409,9 @@ def _reload_query_results(
1409
# Python_API_core, as part of a major rewrite of the deadline, timeout,
1410
# retry process sets the timeout value as a Python object().
1411
# Our system does not natively handle that and instead expects
1412
- # 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
1413
# None.
1414
- if isinstance(self._done_timeout, object): # pragma: NO COVER
+ if type(self._done_timeout) is object: # pragma: NO COVER
1415
self._done_timeout = None
1416
1417
if self._done_timeout is not None: # pragma: NO COVER
0 commit comments