Skip to content

Commit

Permalink
revert back to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
thomcsmits committed Sep 18, 2024
1 parent 91a6b99 commit 6182ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# check if all tags used in templates are part of tags.json
missing_tags = [tag for tag in template_tags if tag not in tags]

if len(missing_tags) > 1:
if len(missing_tags) > 0:
raise ValueError(
f"All tags in templates should exist in tags.json. The following tags are missing in tags.json: {missing_tags}"
)

0 comments on commit 6182ab9

Please sign in to comment.