Skip to content

Commit

Permalink
Remove unecessary lower() call in json writing
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored Sep 15, 2023
1 parent ff6c350 commit 15591c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/write-ci-status-json.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def get_statuses(env_values: List[str]) -> Dict[str, str]:

status_dict = get_statuses(env_statuses)

outfile = f"{args.mdakit.lower()}-{args.tag}-statuses.json"
outfile = f"{args.mdakit}-{args.tag}-statuses.json"

with open(outfile, 'w') as f:
json.dump(status_dict, f)

0 comments on commit 15591c4

Please sign in to comment.