fix set() to list()

This commit is contained in:
Marco Zeisler 2021-06-02 21:52:34 +02:00
parent 480eff011f
commit 7e3445f6ed

View File

@ -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] = {}