Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pandas_gbq/gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import logging
import re
import warnings
from typing import Optional

from pandas_gbq.contexts import Context # noqa - backward compatible export
from pandas_gbq.contexts import context
Expand Down Expand Up @@ -108,7 +109,7 @@ def read_gbq(
max_results=None,
verbose=None,
private_key=None,
progress_bar_type="tqdm",
progress_bar_type: Optional[str] = "tqdm",
dtypes=None,
auth_redirect_uri=None,
client_id=None,
Expand Down
Loading