From 5c6708cddd39447507dd88b096f229d063e4ece7 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Tue, 7 Jan 2020 13:21:09 +0000 Subject: [PATCH] Removed a couple of unused prints --- openflexure_microscope/common/flask_labthings/extensions.py | 1 - openflexure_microscope/common/flask_labthings/views/tasks.py | 1 - 2 files changed, 2 deletions(-) diff --git a/openflexure_microscope/common/flask_labthings/extensions.py b/openflexure_microscope/common/flask_labthings/extensions.py index 538609df..53b61aec 100644 --- a/openflexure_microscope/common/flask_labthings/extensions.py +++ b/openflexure_microscope/common/flask_labthings/extensions.py @@ -72,7 +72,6 @@ class BaseExtension: @property def gui(self): - print(self._gui) # Handle missing/no GUI if not self._gui: return None diff --git a/openflexure_microscope/common/flask_labthings/views/tasks.py b/openflexure_microscope/common/flask_labthings/views/tasks.py index 2a203c23..11768fb0 100644 --- a/openflexure_microscope/common/flask_labthings/views/tasks.py +++ b/openflexure_microscope/common/flask_labthings/views/tasks.py @@ -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