remove useless print message

This commit is contained in:
Sven Czarnian
2021-12-16 16:08:11 +01:00
parent 78d61eb6cc
commit d1e90cfd22

View File

@@ -125,8 +125,6 @@ class Worker(Thread):
executionTime = time.process_time() - start executionTime = time.process_time() - start
if 60.0 <= executionTime: if 60.0 <= executionTime:
print('Optimized ' + str(len(aco.Result)) + ' inbounds in ' + str(executionTime) + ' seconds') print('Optimized ' + str(len(aco.Result)) + ' inbounds in ' + str(executionTime) + ' seconds')
else:
print('No relevant inbounds found for the optimization in ' + self.Icao)
self.releaseLock() self.releaseLock()