Skip to content

Commit 4f10721

Browse files
committed
type is-dtype-equal
1 parent a32c467 commit 4f10721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas-stubs/core/dtypes/common.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ _ArrayOrDtype: TypeAlias = (
3333
def is_object_dtype(arr_or_dtype: _ArrayOrDtype) -> bool: ...
3434
def is_datetime64_dtype(arr_or_dtype: _ArrayOrDtype) -> bool: ...
3535
def is_timedelta64_dtype(arr_or_dtype: _ArrayOrDtype) -> bool: ...
36-
def is_dtype_equal(source, target) -> bool: ...
36+
def is_dtype_equal(source: _ArrayOrDtype, target: _ArrayOrDtype) -> bool: ...
3737
def is_string_dtype(arr_or_dtype: _ArrayOrDtype) -> bool: ...
3838
def is_integer_dtype(arr_or_dtype: _ArrayOrDtype) -> bool: ...
3939
def is_signed_integer_dtype(arr_or_dtype: _ArrayOrDtype) -> bool: ...

0 commit comments

Comments
 (0)