From ec1b4100a3586eb65fa7e2309051176c31c7a5d3 Mon Sep 17 00:00:00 2001 From: Adrien Date: Wed, 20 Sep 2023 22:22:13 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20validation=20issue=20in=20?= =?UTF-8?q?/api/stop/{stop=5Fid}/destinations=20responses?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/api/idfm_interface/idfm_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/api/idfm_interface/idfm_types.py b/backend/api/idfm_interface/idfm_types.py index c9530f4..5fef609 100644 --- a/backend/api/idfm_interface/idfm_types.py +++ b/backend/api/idfm_interface/idfm_types.py @@ -205,7 +205,7 @@ class Line(Struct): Lines = dict[str, Line] -Destinations = dict[str, set[str]] +Destinations = dict[int, set[str]] # TODO: Set structs frozen