summaryrefslogtreecommitdiff
path: root/numpy/f2py
diff options
context:
space:
mode:
authorjutke <jutke@allstate.com>2017-01-23 07:57:54 -0600
committerjutke <jutke@allstate.com>2017-01-23 07:57:54 -0600
commit8613c8da4f8da7dbb90e866add49d5cb633fc85b (patch)
treea3bd9aa1daf9823b4dd8fe8d004b58f97e5936c6 /numpy/f2py
parent8610e48687e7a05e7e0e0735629e5cace69cb04f (diff)
downloadnumpy-8613c8da4f8da7dbb90e866add49d5cb633fc85b.tar.gz
STY: space around operator
per request from @charris
Diffstat (limited to 'numpy/f2py')
-rwxr-xr-xnumpy/f2py/crackfortran.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/f2py/crackfortran.py b/numpy/f2py/crackfortran.py
index ce583c7b2..e38e8e3fe 100755
--- a/numpy/f2py/crackfortran.py
+++ b/numpy/f2py/crackfortran.py
@@ -2451,7 +2451,7 @@ def get_parameters(vars, global_params={}):
if not selected_kind_re.match(v):
v_ = v.split('_')
# In case there are additive parameters
- if len(v_)>1:
+ if len(v_) > 1:
v = ''.join(v_[:-1]).lower().replace(v_[-1].lower(), '')
# Currently this will not work for complex numbers.