Skip to content

Commit

Permalink
models.reference_files:ConvertAction - fix typo in validator exceptio…
Browse files Browse the repository at this point in the history
…n message
  • Loading branch information
MatteoCampinoti94 committed Oct 7, 2024
1 parent 5b87aba commit 5b66969
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acacore/models/reference_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class ConvertAction(NoDefaultsModel):
@model_validator(mode="after")
def _validate_model(self) -> Self:
if not self.tool == "copy" and not self.output:
raise ValueError("Missing outputs.")
raise ValueError("Missing output.")
return self


Expand Down

0 comments on commit 5b66969

Please sign in to comment.