Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion smithplot/smithaxes.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def plot(self, *args, **kwargs):
pass

# if (converted) arg is an ndarray of complex type, split it
if isinstance(arg, np.ndarray) and arg.dtype in [np.complex, np.complex128]:
if isinstance(arg, np.ndarray) and arg.dtype in [complex, np.complex128]:
new_args += z_to_xy(arg)
else:
new_args += (arg,)
Expand Down