We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6009924 commit f10bfdbCopy full SHA for f10bfdb
pydra/engine/core.py
@@ -943,6 +943,7 @@ def _sanitize_spec(
943
raise ValueError("Provided SpecInfo must have BaseSpec as its base.")
944
if "_graph_checksums" not in {f[0] for f in spec.fields}:
945
spec.fields.insert(0, graph_checksum_input)
946
+ return spec
947
else:
948
base = BaseSpec
949
if isinstance(spec, list):
pydra/engine/tests/test_workflow.py
@@ -69,7 +69,7 @@ def test_wf_specinfo_input_spec():
69
bases=(ShellSpec,),
70
)
71
with pytest.raises(
72
- ValueError, match="Provided SpecInfo must have BaseSpec as it's base."
+ ValueError, match="Provided SpecInfo must have BaseSpec as its base."
73
):
74
Workflow(name="workflow", input_spec=bad_input_spec)
75
0 commit comments