Skip to content

Commit 4fdc459

Browse files
add type hint
1 parent 451621b commit 4fdc459

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9048,7 +9048,7 @@ def _promote_wide_ints(df: DataFrame) -> DataFrame:
90489048
self = _promote_wide_ints(self)
90499049
other = _promote_wide_ints(other)
90509050

9051-
def _restore_wide_ints(df: DataFrame):
9051+
def _restore_wide_ints(df: DataFrame) -> DataFrame:
90529052
"""Restores previously int64/uint64 columns if they don't have NAs."""
90539053
cast_map: dict[str, str] = {}
90549054
for col in df.columns:

0 commit comments

Comments
 (0)