Skip to content

Commit b492e43

Browse files
committed
fixing black
1 parent 1dc307b commit b492e43

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

pydra/engine/helpers_state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def remove_inp_from_splitter_rpn(splitter_rpn, inputs_to_remove):
256256

257257

258258
def removed_previous_repeated(previous_splitters, other_states):
259-
""" removing states from previous tasks that are repeated either directly or indirectly"""
259+
"""removing states from previous tasks that are repeated either directly or indirectly"""
260260
for el in previous_splitters:
261261
if el[1:] not in other_states:
262262
raise PydraStateError(

pydra/engine/tests/test_workflow.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1406,8 +1406,7 @@ def test_wf_3nd_ndst_6(plugin, tmpdir):
14061406

14071407

14081408
def test_wf_3nd_7(tmpdir):
1409-
""" workflow with three tasks A->B->C vs two tasks A->C with multiple connections
1410-
"""
1409+
"""workflow with three tasks A->B->C vs two tasks A->C with multiple connections"""
14111410
wf = Workflow(name="wf", input_spec=["zip"], cache_dir=tmpdir)
14121411
wf.inputs.zip = [["test1", "test3", "test5"], ["test2", "test4", "test6"]]
14131412

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ tests =
8282
%(test)s
8383
dev =
8484
%(test)s
85-
black
85+
black==21.4b2
8686
pre-commit
8787
dask =
8888
%(test)s

0 commit comments

Comments
 (0)