Skip to content

Commit 76bc90c

Browse files
committed
clean function maybe_convert_numeric_to_64bit
1 parent 8e699ed commit 76bc90c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pandas/core/arrays/interval.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,9 +186,6 @@
186186

187187
def maybe_convert_numeric_to_64bit(arr: NumpyIndexT) -> NumpyIndexT:
188188
# IntervalTree only supports 64 bit numpy array
189-
190-
if not is_array_like(arr):
191-
return arr
192189
dtype = arr.dtype
193190
if not np.issubclass_(dtype.type, np.number):
194191
return arr

0 commit comments

Comments
 (0)