Spaces:
Sleeping
Sleeping
OnlyBiggg
commited on
Commit
·
aa1d17f
1
Parent(s):
49b2f06
fix
Browse files- app/api/routes.py +1 -0
app/api/routes.py
CHANGED
|
@@ -325,6 +325,7 @@ async def time_trip(request: Request) -> Response:
|
|
| 325 |
time_list = []
|
| 326 |
for trip in trip_list:
|
| 327 |
if (trip["route_id"]) == route_id:
|
|
|
|
| 328 |
time_list.append(trip["departure_time"])
|
| 329 |
parameters = {
|
| 330 |
"time_list": time_list
|
|
|
|
| 325 |
time_list = []
|
| 326 |
for trip in trip_list:
|
| 327 |
if (trip["route_id"]) == route_id:
|
| 328 |
+
print(trip)
|
| 329 |
time_list.append(trip["departure_time"])
|
| 330 |
parameters = {
|
| 331 |
"time_list": time_list
|