Fix Python3 linting
This commit is contained in:
parent
5898a37997
commit
aa710d2d4e
2 changed files with 3 additions and 2 deletions
|
@ -1,3 +1,4 @@
|
|||
from __future__ import print_function
|
||||
import os
|
||||
import pickle
|
||||
|
||||
|
@ -37,5 +38,5 @@ def process_message(data):
|
|||
num = int(text.split()[1]) - 1
|
||||
tasks[channel].pop(num)
|
||||
if text == "show":
|
||||
print tasks
|
||||
print(tasks)
|
||||
pickle.dump(tasks, open(FILE, "wb"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue