Skip to content

Commit

Permalink
sort keywords to avoid spurious updates
Browse files Browse the repository at this point in the history
  • Loading branch information
captn3m0 committed Mar 15, 2024
1 parent 36fd907 commit efe76c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ics-to-event.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def convert_ics_to_json(ics_file_path):
"name": event.location
},
"url": event.url,
"keywords": ", ".join(event.categories)
"keywords": ", ".join(sorted(event.categories)),
}

# Check for attachments (if image)
Expand Down

0 comments on commit efe76c5

Please sign in to comment.