Skip to content

Commit 8278385

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 5f9dbab commit 8278385

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

pydra/engine/tests/test_task.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,8 +1008,9 @@ def testfunc(a: int, b: float = 0.1) -> ty.NamedTuple("Output", [("out", float)]
10081008
assert "Python Function" == data["label"]
10091009
assert any(json_content)
10101010

1011+
10111012
def test_audit_shellcommandtask(tmpdir):
1012-
args = '-l'
1013+
args = "-l"
10131014
shelly = ShellCommandTask(
10141015
name="shelly",
10151016
executable="ls",
@@ -1039,9 +1040,6 @@ def test_audit_shellcommandtask(tmpdir):
10391040
assert any(label_content)
10401041

10411042

1042-
1043-
1044-
10451043
def test_audit_task(tmpdir):
10461044
@mark.task
10471045
def testfunc(a: int, b: float = 0.1) -> ty.NamedTuple("Output", [("out", float)]):

0 commit comments

Comments
 (0)