Skip to content

Commit

Permalink
remove type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewelamb committed Apr 17, 2024
1 parent 45e0e5e commit c96ee2e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions set_release_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@
TODAYS_MONTH = str(TODAY.month)

tags = os.getenv("TAGS")
print(tags)
print(type(tags))
assert isinstance(tags, list)
for tag in tags:
assert isinstance(tag, dict)
assert "ref" in tag

'''
tags = [
{
Expand Down

0 comments on commit c96ee2e

Please sign in to comment.