Skip to content

Commit 3681fa4

Browse files
STY: Apply ruff/flake8-pie rule PIE804
PIE804 Unnecessary `dict` kwargs
1 parent 27c4cd4 commit 3681fa4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/pipeline/engine/tests/test_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ def func1(in1):
356356
# check that multiple json's don't trigger rerun
357357
with open(os.path.join(node.output_dir(), "test.json"), "w") as fp:
358358
fp.write("dummy file")
359-
w1.config["execution"].update(**{"stop_on_first_rerun": True})
359+
w1.config["execution"].update(stop_on_first_rerun=True)
360360

361361
w1.run()
362362

0 commit comments

Comments
 (0)