Skip to content

Commit

Permalink
fix: include validate in individual conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
camilovelezr committed Mar 19, 2024
1 parent 29f2a7a commit 9f45607
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion to_ict.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ def main(
for manifest in [x for x in LOCAL_MANIFESTS if name in str(x)]:
try:
ict_ = ICT.from_wipp(manifest)
ict_.save_yaml(manifest.with_name("ict.yaml"))
yaml_path = ict_.save_yaml(manifest.with_name("ict.yaml"))
validate(yaml_path)
converted += 1

except BaseException as e:
Expand Down

0 comments on commit 9f45607

Please sign in to comment.