Skip to content

Commit a0293f6

Browse files
committed
lint
1 parent bf45bd2 commit a0293f6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

google/cloud/bigquery/client.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"""Client for interacting with the Google BigQuery API."""
1616

1717
from __future__ import absolute_import
18+
from __future__ import annotations
1819
from __future__ import division
1920

2021
from collections import abc as collections_abc
@@ -31,6 +32,7 @@
3132
import typing
3233
from 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
"""

0 commit comments

Comments
 (0)