Compare commits

..

No commits in common. "5b4b75212da3aa4d45442479482cf52e7c84e00d" and "43b02143fa2d03f549452e895eb13e8904861f6e" have entirely different histories.

View file

@ -89,19 +89,14 @@ if checked_in or args.last_checkin is not None :
stops = response["intermediateStops"]
now = time.time()
for stop in stops:
if stop["scheduledDeparture"] is None and stop["scheduledArrival"] is None :
continue
if stop["realDeparture"] is not None and int(stop["realDeparture"]) > now :
dep = timestring(stop, "Departure")
arr = timestring(stop, "Arrival")
tooltip = tooltip + f'\n{arr}{dep} <b>{stop["name"]}</b>'
elif stop["scheduledDeparture"] is not None and int(stop["scheduledDeparture"]) > now :
elif int(stop["scheduledDeparture"]) > now :
dep = humantime(stop["scheduledDeparture"])
arr = humantime(stop["scheduledArrival"])
tooltip = tooltip + f'\n<i>{arr}{dep}</i> <b>{stop["name"]}</b>'
elif stop["scheduledDeparture"] is None and int(stop["scheduledArrival"]) > now :
arr = humantime(stop["scheduledArrival"])
tooltip = tooltip + f'\n<i>arrival {arr}</i> <b>{stop["name"]}</b>'
print(json.dumps({"text": st, "tooltip": tooltip, "class": "active", "percentage": ""}))