Skip to content

Commit a906325

Browse files
author
sah0725
committed
FIX: Fix doctest
1 parent e62ee17 commit a906325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexers/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def check_array_indexer(array: AnyArrayLike, indexer: Any) -> Any:
492492
>>> pd.api.indexers.check_array_indexer(arr, 1)
493493
1
494494
>>> pd.api.indexers.check_array_indexer(arr, slice(0, 1, 1))
495-
slice(0, 1, None)
495+
slice(0, 1, 1)
496496
497497
Similarly for integer indexers, an integer ndarray is returned when it is
498498
a valid indexer, otherwise an error is (for integer indexers, a matching

0 commit comments

Comments
 (0)