From 7e3445f6ed388d24e7f1c1ca94cefa2d8abf16a7 Mon Sep 17 00:00:00 2001 From: Marco Zeisler Date: Wed, 2 Jun 2021 21:52:34 +0200 Subject: [PATCH] fix set() to list() --- components/orchestration/orchestrator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/orchestration/orchestrator.py b/components/orchestration/orchestrator.py index 2259bcd..7e8054e 100644 --- a/components/orchestration/orchestrator.py +++ b/components/orchestration/orchestrator.py @@ -17,7 +17,7 @@ sys.modules['target_velocity'] = target_velocity class Orchestrator: # vehicle ids - vins: List[str] = set() + vins: List[str] = [] # traffic lights {tlid: {color: color, switching_time: in_seconds}} tls: Dict[str, Dict] = {}