Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pandas/core/dtypes/dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ def __ne__(self, other: object) -> bool:
@classmethod
def is_dtype(cls, dtype: object) -> bool:
"""
Return a boolean if we if the passed type is an actual dtype that we
Return a boolean if the passed type is an actual dtype that we
can match (via string or type)
"""
if isinstance(dtype, str):
Expand Down Expand Up @@ -1436,7 +1436,7 @@ def __setstate__(self, state) -> None:
@classmethod
def is_dtype(cls, dtype: object) -> bool:
"""
Return a boolean if we if the passed type is an actual dtype that we
Return a boolean if the passed type is an actual dtype that we
can match (via string or type)
"""
if isinstance(dtype, str):
Expand Down
Loading