Removed a couple of unused prints
This commit is contained in:
parent
d724c3d121
commit
5c6708cddd
2 changed files with 0 additions and 2 deletions
|
|
@ -72,7 +72,6 @@ class BaseExtension:
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gui(self):
|
def gui(self):
|
||||||
print(self._gui)
|
|
||||||
# Handle missing/no GUI
|
# Handle missing/no GUI
|
||||||
if not self._gui:
|
if not self._gui:
|
||||||
return None
|
return None
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,6 @@ class TaskResource(Resource):
|
||||||
@marshal_with(TaskSchema())
|
@marshal_with(TaskSchema())
|
||||||
def get(self, id):
|
def get(self, id):
|
||||||
try:
|
try:
|
||||||
print(tasks.dict())
|
|
||||||
task = tasks.dict()[id]
|
task = tasks.dict()[id]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
return abort(404) # 404 Not Found
|
return abort(404) # 404 Not Found
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue