Skip to content

Commit

Permalink
refactor: minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierlou committed Mar 11, 2024
1 parent dee9891 commit 449d3a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/assert_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def check(obj, version, parents=''):
if errors:
message = (
f"Versions are mismatched within the schema '{schema['name']}', "
f"expected version {version} but:"
f"expected version '{version}' but:"
)
for e in errors:
message += f'\n- {e[0]} has version {e[1]}'
message += f"\n- {e[0]} has version '{e[1]}'"
raise Exception(message)

0 comments on commit 449d3a0

Please sign in to comment.