Skip to content

Commit d54d982

Browse files
committed
np.asarray
1 parent fa44e36 commit d54d982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/interval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2128,7 +2128,7 @@ def _combined(self) -> IntervalSide:
21282128
)
21292129
comb = comb.view("complex128")[:, 0]
21302130
else:
2131-
comb = np.array(left.ravel(), dtype="complex128")
2131+
comb = np.asarray(left.ravel(), dtype="complex128")
21322132
comb.imag = right.ravel()
21332133
return comb
21342134

0 commit comments

Comments
 (0)