diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-07-30 22:53:05 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-07-30 22:53:05 -0700 |
commit | e7a0f7575c69222e0c0104939837c5c9eeae4380 (patch) | |
tree | e5ac79d18acf500cc0a67c409a7b47831ab657f4 /numpy/lib/function_base.py | |
parent | 58df86ae9520dc9c667ff43176a0bd08c565cc3d (diff) | |
download | numpy-e7a0f7575c69222e0c0104939837c5c9eeae4380.tar.gz |
STY: Remove C-like parentheses
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index a8495519b..3e82f94db 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1340,7 +1340,7 @@ def angle(z, deg=False): """ z = asarray(z) - if (issubclass(z.dtype.type, _nx.complexfloating)): + if issubclass(z.dtype.type, _nx.complexfloating): zimag = z.imag zreal = z.real else: |