Skip to content

Commit c861a74

Browse files
committed
TYP: remove ignore from array_manager.py III
1 parent 31287f0 commit c861a74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/internals/array_manager.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ def iset(
834834

835835
# multiple columns -> convert slice or array to integer indices
836836
elif isinstance(loc, slice):
837-
indices = range(
837+
indices: range | np.ndarray = range(
838838
loc.start if loc.start is not None else 0,
839839
loc.stop if loc.stop is not None else self.shape_proper[1],
840840
loc.step if loc.step is not None else 1,

0 commit comments

Comments
 (0)