We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdc987a commit 93c150fCopy full SHA for 93c150f
1 file changed
pandas_gbq/gbq.py
@@ -7,6 +7,7 @@
7
import logging
8
import re
9
import warnings
10
+from typing import Optional
11
12
from pandas_gbq.contexts import Context # noqa - backward compatible export
13
from pandas_gbq.contexts import context
@@ -108,7 +109,7 @@ def read_gbq(
108
109
max_results=None,
110
verbose=None,
111
private_key=None,
- progress_bar_type="tqdm",
112
+ progress_bar_type: Optional[str] = "tqdm",
113
dtypes=None,
114
auth_redirect_uri=None,
115
client_id=None,
0 commit comments