Skip to content

Commit db8af91

Browse files
Fix integer type
1 parent 5ade2b4 commit db8af91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/strings/accessor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2370,7 +2370,7 @@ def get_dummies(
23702370
prefix_sep: str | None = "_",
23712371
dummy_na: bool = False,
23722372
sparse: bool = False,
2373-
dtype: NpDtype | None = int,
2373+
dtype: NpDtype | None = np.int64,
23742374
):
23752375
"""
23762376
Return DataFrame of dummy/indicator variables for Series.

0 commit comments

Comments
 (0)