Skip to content

Commit 7796d03

Browse files
TrevorBergeronshobsi
authored andcommitted
chore: Ignore mypy false positive (#1515)
1 parent e439e67 commit 7796d03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bigframes/core/indexes/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ def __getitem__(self, key: int) -> typing.Any:
493493
raise NotImplementedError(f"Index key not supported {key}")
494494

495495
@overload
496-
def to_pandas(
496+
def to_pandas( # type: ignore[overload-overlap]
497497
self,
498498
*,
499499
allow_large_results: Optional[bool] = ...,

bigframes/dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,7 @@ def to_arrow(
15961596
return pa_table
15971597

15981598
@overload
1599-
def to_pandas(
1599+
def to_pandas( # type: ignore[overload-overlap]
16001600
self,
16011601
max_download_size: Optional[int] = ...,
16021602
sampling_method: Optional[str] = ...,

0 commit comments

Comments
 (0)