File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 1515"""Client for interacting with the Google BigQuery API."""
1616
1717from __future__ import absolute_import
18+ from __future__ import annotations
1819from __future__ import division
1920
2021from collections import abc as collections_abc
3132import typing
3233from typing import (
3334 Any ,
35+ Callable ,
3436 Dict ,
3537 IO ,
3638 Iterable ,
@@ -3682,10 +3684,10 @@ def _query_and_wait_bigframes(
36823684 job_retry : retries .Retry = DEFAULT_JOB_RETRY ,
36833685 page_size : Optional [int ] = None ,
36843686 max_results : Optional [int ] = None ,
3685- callback = lambda _ : None ,
3687+ callback : Callable = lambda _ : None ,
36863688 ) -> RowIterator :
36873689 """See query_and_wait.
3688-
3690+
36893691 This method has an extra callback parameter, which is used by bigframes
36903692 to create better progress bars.
36913693 """
You can’t perform that action at this time.
0 commit comments