Skip to content

Commit

Permalink
small cleanup: remove LEGACY_TAGS_FORMAT
Browse files Browse the repository at this point in the history
  • Loading branch information
NouemanKHAL committed Apr 26, 2023
1 parent c9f55e8 commit 18a8fcb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/scripts/get_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,4 @@ def parse_tags(tags):
tags = [ tag.replace(" ", "_") for tag in tags ]
tags = list(dict.fromkeys(tags))

legacy_tags = os.environ.get('LEGACY_TAGS_FORMAT', False)
if legacy_tags:
print(','.join(tags))
else:
print(','.join(tags))
print(','.join(tags))

0 comments on commit 18a8fcb

Please sign in to comment.