From 8553a103d955f37ac1300c7999b2966717b3ce12 Mon Sep 17 00:00:00 2001 From: Israel Figueroa Date: Mon, 3 Feb 2025 04:52:51 -0300 Subject: [PATCH] x --- tpmcqr_service/api/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tpmcqr_service/api/utils.py b/tpmcqr_service/api/utils.py index 674faff..18a7728 100644 --- a/tpmcqr_service/api/utils.py +++ b/tpmcqr_service/api/utils.py @@ -92,6 +92,8 @@ def estima_llegada(parada_distance, expedicion): salida = math.ceil(estimator/60) trip_info['trip_estimator'] = 'Hace {} minutos'.format(salida) + return trip_info + def obtiene_datos_parada(id_paradero): parada = Paraderos.query.filter(Paraderos.id_paradero==id_paradero).one_or_none()