mirror of https://gitlab.com/bashrc2/epicyon
List of lists
parent
6e101c17a1
commit
3e28ae1843
|
@ -232,13 +232,14 @@ def _event_text_match(content: str, text_match: str) -> bool:
|
|||
return False
|
||||
|
||||
|
||||
def _sort_todays_events(events: []) -> []:
|
||||
def _sort_todays_events(post_events_list: []) -> []:
|
||||
"""Returns a list of events sorted in chronological order
|
||||
"""
|
||||
events_dict = {}
|
||||
|
||||
# convert the list to a dict indexed on time
|
||||
for tag in events:
|
||||
for post_event in post_events_list:
|
||||
for tag in post_event:
|
||||
# only check events (not places)
|
||||
if tag['type'] != 'Event':
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue