change the gafor id to an integer

This commit is contained in:
Sven Czarnian
2021-11-13 09:43:37 +01:00
parent d6b85b1660
commit cbbaf0c021

View File

@@ -219,7 +219,7 @@ class Airport:
if None == dataConfig.get('gaforid'):
sys.stderr.write('No GAFOR-ID found!')
sys.exit(-1)
self.GaforId = dataConfig['gaforid']
self.GaforId = int(dataConfig['gaforid'])
# get the default sequencing data
self.parseDefaultSequencingConfiguration(icao, planningConfig)