MAINT/STY: Upgrade flake8 and fix new failures.

This commit is contained in:
Scott Sanderson
2017-05-15 11:45:04 -04:00
parent c20807a0c7
commit 22df0a9cb9
16 changed files with 65 additions and 53 deletions
+2 -1
View File
@@ -1142,7 +1142,8 @@ def parameter_space(__fail_fast=False, **params):
"supplied to parameter_space()." % extra
)
make_param_sets = lambda: product(*(params[name] for name in argnames))
def make_param_sets():
return product(*(params[name] for name in argnames))
if __fail_fast:
@wraps(f)