transitous rewrite: fix transfer

This commit is contained in:
Kaaninchen
2026-08-17 14:08:08 +02:00
parent 59af14e6ff
commit 21146fff86
3 changed files with 8 additions and 13 deletions
-1
View File
@@ -150,7 +150,6 @@ def get_sound_path(destination) -> str | None:
def get_next_station(stops: dict, train_from :str) -> dict | None:
now = datetime.now(LOCAL_TZ)
print(train_from)
for name, arrival_dt in stops.items():
if arrival_dt >= now:
if name == train_from: