Loading openflexure_microscope/plugins/default/camera_calibration/plugin.py +1 −1 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ from .recalibrate_utils import recalibrate_camera, auto_expose_and_freeze_settin class RecalibrateAPIView(MicroscopeViewPlugin): def post(self): logging.info("Starting microscope recalibration...") task = taskify(self.plugin.recalibrate) task = taskify(self.plugin.recalibrate)() # Return a handle on the autofocus task return jsonify(task.state), 202 Loading Loading
openflexure_microscope/plugins/default/camera_calibration/plugin.py +1 −1 Original line number Diff line number Diff line Loading @@ -15,7 +15,7 @@ from .recalibrate_utils import recalibrate_camera, auto_expose_and_freeze_settin class RecalibrateAPIView(MicroscopeViewPlugin): def post(self): logging.info("Starting microscope recalibration...") task = taskify(self.plugin.recalibrate) task = taskify(self.plugin.recalibrate)() # Return a handle on the autofocus task return jsonify(task.state), 202 Loading