Skip to content

Commit 14b5d54

Browse files
fixed prefix_sep type hint
1 parent 8db200c commit 14b5d54

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
@@ -2367,7 +2367,7 @@ def get_dummies(
23672367
self,
23682368
sep: str = "|",
23692369
prefix=None,
2370-
prefix_sep: str | Iterable[str] | dict[str, str] = "_",
2370+
prefix_sep: str | Iterable[str] | dict[str, str] | None = "_",
23712371
dummy_na: bool = False,
23722372
sparse: bool = False,
23732373
dtype: NpDtype | None = int,

0 commit comments

Comments
 (0)