remove the web UI

This commit is contained in:
Sven Czarnian
2021-11-15 18:20:33 +01:00
parent e4ce4ff654
commit 9028ef0442
3 changed files with 0 additions and 119 deletions

View File

@@ -6,7 +6,6 @@ import time
from aman.com import Weather
from aman.com.Euroscope import Euroscope
from aman.com.WebUI import WebUI
from aman.config.Airport import Airport
from aman.sys.aco.Colony import Colony
from aman.sys.aco.Configuration import Configuration
@@ -29,7 +28,6 @@ class Worker(Thread):
self.ReportQueue = {}
self.WeatherModel = WeatherModel(configuration.GaforId, weather)
self.RecedingHorizonControl = RecedingHorizonControl(configuration.RecedingHorizonControl)
self.WebUi = webui
self.Euroscope = euroscope
# merge the constraint information with the GNG information
@@ -132,7 +130,6 @@ class Worker(Thread):
# send the sequence to the GUI and Euroscope
sequence = self.RecedingHorizonControl.sequence()
self.WebUi.sendSequence(self.Icao, sequence)
self.Euroscope.sendSequence(self.Icao, sequence, self.WeatherModel)
self.releaseLock()