We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent641a712 commit2660dbdCopy 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
-# eithernone or a numeric value. If passed a Python object, convert to
+# eitherNone or a numeric value. If passed a Python object, convert to
1413
# None.
1414
-ifisinstance(self._done_timeout,object):# pragma: NO COVER
+iftype(self._done_timeout)isobject:# pragma: NO COVER
1415
self._done_timeout=None
1416
1417
ifself._done_timeoutisnotNone:# pragma: NO COVER