Skip to content

Commit

Permalink
#15 - Update v2.py - bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
aschuma authored Apr 2, 2024
1 parent 39af8d6 commit 36fbdcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def extract_data(connections):

return {
"from_id": connection.origin.id,
"to_id": connection.destination.id,
"from": last_connection.origin.name,
"from": connection.origin.name,
"to_id": last_connection.destination.id,
"to": last_connection.destination.name,
"departure_planned": iso_ts(departure_planed),
"departure_estimated": iso_ts(departure_estimated),
Expand Down

0 comments on commit 36fbdcc

Please sign in to comment.