Skip to content

Commit

Permalink
Fix typing of dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronchucarroll committed Aug 21, 2024
1 parent dafb61d commit bb79ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/strings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def _str_wrap(self, width: int, **kwargs):

@abc.abstractmethod
def _str_get_dummies(
self, sep: str = "|", dummy_na: bool = False, dtype: NpDtype = None
self, sep: str = "|", dummy_na: bool = False, dtype: NpDtype | None = None
):
pass

Expand Down

0 comments on commit bb79ef2

Please sign in to comment.