This commit is contained in:
Edward Betts 2025-02-11 19:21:06 +00:00
parent bc6fc33cda
commit 8c5b8400ca

View file

@ -84,8 +84,8 @@ class Trip:
if not (depart := (travel["depart"] and utils.as_date(travel["depart"]))):
continue
for when, from_or_to in ((self.start, "from"), (self.end, "to")):
if depart != when and travel["from_or_to"] not in titles:
titles.append(travel["from_or_to"])
if depart != when and travel[from_or_to] not in titles:
titles.append(travel[from_or_to])
return titles
@property