Skip to content

Commit a21eae0

Browse files
authored
Added "." on to check_dtype and obj parameter (#44446)
* fixed Issued No.#43755 * Added . on to check_dtype and obj parameter * Revert "fixed Issued No.#43755" This reverts commit 11f27df.
1 parent 45568a1 commit a21eae0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_testing/asserters.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -542,15 +542,15 @@ def assert_categorical_equal(
542542
left : Categorical
543543
right : Categorical
544544
check_dtype : bool, default True
545-
Check that integer dtype of the codes are the same
545+
Check that integer dtype of the codes are the same.
546546
check_category_order : bool, default True
547547
Whether the order of the categories should be compared, which
548548
implies identical integer codes. If False, only the resulting
549549
values are compared. The ordered attribute is
550550
checked regardless.
551551
obj : str, default 'Categorical'
552552
Specify object name being compared, internally used to show appropriate
553-
assertion message
553+
assertion message.
554554
"""
555555
_check_isinstance(left, right, Categorical)
556556

0 commit comments

Comments
 (0)