Skip to content

Commit

Permalink
fix: TOOLS-2978 federal edition in build col
Browse files Browse the repository at this point in the history
  • Loading branch information
a-spiker committed Oct 22, 2024
1 parent 3aeaea0 commit a1698b4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/utils/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,6 +701,12 @@ def convert_edition_to_shortform(edition):
or "community" in edition.lower()
):
return "Community"

if (
edition.lower() in ["federal", "false", "ee"]
or "federal" in edition.lower()
):
return "Federal"

return "N/E"

Expand Down

0 comments on commit a1698b4

Please sign in to comment.