diff options
author | Ganesh Kathiresan <ganesh3597@gmail.com> | 2020-11-12 09:00:10 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 09:00:10 +0530 |
commit | 90a84af7ae1edd91cc5a45069ad6a824e436d3cd (patch) | |
tree | 01eb9523975fe7aa70c037905a29f54783b54473 /numpy/core | |
parent | 6e2e281a270652cee0028e4e1e98a1c19b57b11b (diff) | |
download | numpy-90a84af7ae1edd91cc5a45069ad6a824e436d3cd.tar.gz |
ENH: Linting
Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/src/umath/loops.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/loops.c.src b/numpy/core/src/umath/loops.c.src index fe60993a7..448e774cc 100644 --- a/numpy/core/src/umath/loops.c.src +++ b/numpy/core/src/umath/loops.c.src @@ -884,7 +884,7 @@ NPY_NO_EXPORT void else { *((@type@ *)op1) = libdivide_@type@_do(in1, &fast_d); - if(((in1 > 0) != (in2 > 0)) && (*((@type@ *)op1) * in2 != in1)) { + if (((in1 > 0) != (in2 > 0)) && (*((@type@ *)op1) * in2 != in1)) { *((@type@ *)op1) = *((@type@ *)op1) - 1; } } |