From 2b4200ba58a10765f3a6ccc036bfe457cd2920d5 Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Mon, 29 Nov 2021 17:56:28 +0100 Subject: [PATCH] remove a debug message --- aman/sys/aco/Colony.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/aman/sys/aco/Colony.py b/aman/sys/aco/Colony.py index 6ca7f6e..d085aa5 100644 --- a/aman/sys/aco/Colony.py +++ b/aman/sys/aco/Colony.py @@ -128,6 +128,4 @@ class Colony: for i in range(1, len(self.Result[-1].Inbound.PlannedArrivalRoute)): prev = self.Result[-1].Inbound.PlannedArrivalRoute[i - 1] current = self.Result[-1].Inbound.PlannedArrivalRoute[i] - if None == prev.ETA or None == current.ETA: - print(self.Result[-1].Inbound.Callsign + ': ' + prev.Waypoint.Name + ', ' + str(prev.ETA) + '; ' + current.Waypoint.Name + ', ' + current.ETA) current.PTA = prev.PTA + (current.ETA - prev.ETA)