File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -295,13 +295,13 @@ def check_version_match(self) -> Self:
295
295
for output in self .meta_yaml .outputs or []:
296
296
if output .version is None :
297
297
raise ValueError (
298
- "If the ` top-level version` field is None, all outputs must specify their own versions."
298
+ "If the top-level ` version` field is None, all outputs must specify their own versions."
299
299
)
300
300
output_versions .add (output .version )
301
301
302
302
if self .version not in output_versions :
303
303
raise ValueError (
304
- "The to[ -level ] `version` field must match at least one of the `outputs[].version` fields "
304
+ "The top -level `version` field must match at least one of the `outputs[].version` fields "
305
305
"in the `meta_yaml` field."
306
306
)
307
307
return self
You can’t perform that action at this time.
0 commit comments