Skip to content

Commit 9054520

Browse files
Removed useless print statement
I don't think there is a reason to print none when extending full.
1 parent 77c71cd commit 9054520

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mrq/scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def _hash_task(task):
1212

1313
full = [str(task.get(x)) for x in ["path", "interval", "dailytime", "queue"]]
1414

15-
print full.extend([str(params)])
15+
full.extend([str(params)])
1616
return " ".join(full)
1717

1818

0 commit comments

Comments
 (0)