Fixed E226 flake8 errors

missing whitespace around arithmetic operator
This commit is contained in:
Andras Tim
2017-07-17 01:25:08 +02:00
parent 2e8caefcab
commit 4b22f270a3
19 changed files with 55 additions and 55 deletions

View File

@@ -947,7 +947,7 @@ def _idval(val, argname, idx, idfn, config=None):
return str(val)
elif isclass(val) and hasattr(val, '__name__'):
return val.__name__
return str(argname)+str(idx)
return str(argname) + str(idx)
def _idvalset(idx, parameterset, argnames, idfn, ids, config=None):