From bd0fdb0899f34117359f75a9ea98e7bfe176de1f Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Wed, 24 Nov 2021 12:03:18 +0100 Subject: [PATCH] fix a crash --- aman/sys/Worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aman/sys/Worker.py b/aman/sys/Worker.py index 066ce19..cc51934 100644 --- a/aman/sys/Worker.py +++ b/aman/sys/Worker.py @@ -106,7 +106,7 @@ class Worker(Thread): for runway in self.SequencingConfiguration.ActiveArrivalRunways: inbound = self.RecedingHorizonControl.lastFixedInboundOnRunway(runway.Runway.Name) if None != inbound: - preceedingInbounds[runway.Runway.Name] = inbound + preceedingInbounds[runway.Runway.Name] = Node(inbound, None, None, None, None) # configure the ACO run acoConfig = Configuration(constraints = self.SequencingConfiguration, nav = self.Configuration.GngData,