Skip to content

Commit

Permalink
style: fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
Midnighter committed Mar 24, 2020
1 parent 4749e98 commit f671edd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/memote/suite/collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ def pytest_generate_tests(self, metafunc):
else:
names = sorted(exp)
metafunc.parametrize(
"experiment", argvalues=[(n, exp[n]) for n in names], ids=names)
"experiment",
argvalues=[(n, exp[n]) for n in names],
ids=names
)
# We only expect one kind of experimental marker per test case
# and thus end execution here.
return
Expand Down

0 comments on commit f671edd

Please sign in to comment.