fix: harden workflow demo and evaluation tooling

This commit is contained in:
lda
2026-07-01 08:20:38 +07:00 Verified
parent 7bdfa3132d
commit 7e5f1c88da
29 changed files with 365 additions and 71 deletions
+1 -1
View File
@@ -154,7 +154,7 @@ def main(argv: list[str] | None = None) -> int:
)
else:
print(_display_command(command))
except ValueError as exc:
except (OSError, ValueError) as exc:
parser.error(str(exc))
return 0