Removed a couple of unused prints

This commit is contained in:
Joel Collins 2020-01-07 13:21:09 +00:00
parent d724c3d121
commit 5c6708cddd
2 changed files with 0 additions and 2 deletions

View file

@ -21,7 +21,6 @@ class TaskResource(Resource):
@marshal_with(TaskSchema())
def get(self, id):
try:
print(tasks.dict())
task = tasks.dict()[id]
except KeyError:
return abort(404) # 404 Not Found