Add print statement to example (#454)

* Add print statement to example

* add space
This commit is contained in:
pollfly 2021-09-19 15:11:32 +03:00 committed by GitHub
parent 51d70efbff
commit d138ee984f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@ from clearml import Task
for i in range(3):
task = Task.init(project_name="same process, multiple tasks", task_name="Task #{}".format(i))
# Doing Task processing here
print("Task #{} running".format(i))
#
#
print("Task #{} done :) ".format(i))
task.close()