Skip to content

Commit c204a9e

Browse files
authored
Update pandas/core/indexing.py
1 parent a9c49ea commit c204a9e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pandas/core/indexing.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1610,7 +1610,6 @@ def _validate_key(self, key, axis: AxisInt) -> None:
16101610
raise IndexError(f".iloc requires numeric indexers, got {arr}")
16111611

16121612
if len(arr):
1613-
# handle ExtensionArray using _reduce method else use numpy
16141613
if isinstance(arr.dtype, ExtensionDtype):
16151614
arr_max = arr._reduce("max")
16161615
arr_min = arr._reduce("min")

0 commit comments

Comments
 (0)