Skip to content

Commit b919b7e

Browse files
KhemkaranKhemkaran
authored andcommitted
removed type comment and changed dtype to complex128
1 parent d541aac commit b919b7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/arrays/interval.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1941,8 +1941,8 @@ def _combined(self) -> IntervalSide:
19411941
)
19421942
comb = comb.view("complex128")[:, 0]
19431943
else:
1944-
comb = (np.array(left.ravel(), dtype=complex)) + (
1945-
1j * np.array(right.ravel(), dtype=complex)
1944+
comb = (np.array(left.ravel(), dtype="complex128")) + (
1945+
1j * np.array(right.ravel(), dtype="complex128")
19461946
)
19471947
return comb
19481948

0 commit comments

Comments
 (0)