Remove print in Varken.py

This commit is contained in:
samwiseg0 2019-03-11 12:47:13 -04:00
parent b0bbe431d5
commit c704bd97ed

View file

@ -32,7 +32,6 @@ def thread():
while schedule.jobs:
job = QUEUE.get()
a = job()
print(a)
if a is not None:
schedule.clear(a)
QUEUE.task_done()