Skip to content

Commit

Permalink
fix: Regression
Browse files Browse the repository at this point in the history
  • Loading branch information
Pete-Hamlin committed Sep 17, 2024
1 parent 478b6c3 commit f138075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syncall/tw_caldav_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def convert_tw_to_caldav(tw_item: Item) -> Item:
if "priority" in tw_item.keys() and tw_item["priority"].lower() in aliases_tw_caldav_priority.keys():
caldav_item["priority"] = aliases_tw_caldav_priority[tw_item["priority"].lower()]
else:
caldav_item["priority"] = 0
caldav_item["priority"] = ""

# Timestamps
if "entry" in tw_item:
Expand Down

0 comments on commit f138075

Please sign in to comment.