summaryrefslogtreecommitdiff
path: root/numpy/lib/arraysetops.py
diff options
context:
space:
mode:
authorJason Thai <jasonnthaii@gmail.com>2022-06-01 00:48:52 -0700
committerGitHub <noreply@github.com>2022-06-01 00:48:52 -0700
commit7a880a65a2b519995e2a1a4c911380170d38ae1b (patch)
treee378ef074c3b4dd61ecd32ab084d9591be539c04 /numpy/lib/arraysetops.py
parent350b3fe83ff48bb9b87e06e8b1c0be6072141f39 (diff)
downloadnumpy-7a880a65a2b519995e2a1a4c911380170d38ae1b.tar.gz
MAINT: Update multiline indentations
Co-authored-by: Matti Picus <matti.picus@gmail.com>
Diffstat (limited to 'numpy/lib/arraysetops.py')
-rw-r--r--numpy/lib/arraysetops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/arraysetops.py b/numpy/lib/arraysetops.py
index 53930850e..6d36fdcbd 100644
--- a/numpy/lib/arraysetops.py
+++ b/numpy/lib/arraysetops.py
@@ -338,7 +338,7 @@ def _unique1d(ar, return_index=False, return_inverse=False,
mask = np.empty(aux.shape, dtype=np.bool_)
mask[:1] = True
if (equal_nans and aux.shape[0] > 0 and aux.dtype.kind in "cfmM" and
- np.isnan(aux[-1])):
+ np.isnan(aux[-1])):
if aux.dtype.kind == "c": # for complex all NaNs are considered equivalent
aux_firstnan = np.searchsorted(np.isnan(aux), True, side='left')
else: