We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d541aac commit b919b7eCopy full SHA for b919b7e
pandas/core/arrays/interval.py
@@ -1941,8 +1941,8 @@ def _combined(self) -> IntervalSide:
1941
)
1942
comb = comb.view("complex128")[:, 0]
1943
else:
1944
- comb = (np.array(left.ravel(), dtype=complex)) + (
1945
- 1j * np.array(right.ravel(), dtype=complex)
+ comb = (np.array(left.ravel(), dtype="complex128")) + (
+ 1j * np.array(right.ravel(), dtype="complex128")
1946
1947
return comb
1948
0 commit comments