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

bug fix - remove import warning when everything was imported successfully + changed global step api to match TF 1.4

This commit is contained in:
Itai Caspi
2017-11-06 17:28:13 +02:00
parent fd103a7b69
commit b40259c61a
2 changed files with 3 additions and 2 deletions

View File

@@ -30,7 +30,8 @@ from subprocess import Popen
import datetime
import presets
screen.warning("Warning: failed to import the following packages - {}".format(', '.join(set(failed_imports))))
if len(set(failed_imports)) > 0:
screen.warning("Warning: failed to import the following packages - {}".format(', '.join(set(failed_imports))))
time_started = datetime.datetime.now()
cur_time = time_started.time()