1
0
mirror of https://github.com/gryf/coach.git synced 2025-12-18 19:50:17 +01:00

fixing the coach entrypoint after adding the CoachLauncher abstraction (#92)

This commit is contained in:
Itai Caspi
2018-11-12 20:26:49 +02:00
committed by Balaji Subramaniam
parent 2804a7c24f
commit 0fe583186e

View File

@@ -663,6 +663,10 @@ class CoachLauncher(object):
evaluation_worker.terminate() evaluation_worker.terminate()
if __name__ == "__main__": def main():
launcher = CoachLauncher() launcher = CoachLauncher()
launcher.launch() launcher.launch()
if __name__ == "__main__":
main()