From 26e719feff765c3dca7a4697fa47532ce57de0e7 Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Tue, 14 Jan 2020 11:45:04 +0000 Subject: [PATCH] Tidied up docstrings --- openflexure_microscope/api/app.py | 12 ------------ .../common/flask_labthings/views/extensions.py | 2 -- 2 files changed, 14 deletions(-) diff --git a/openflexure_microscope/api/app.py b/openflexure_microscope/api/app.py index 23f957b8..a095c6c1 100644 --- a/openflexure_microscope/api/app.py +++ b/openflexure_microscope/api/app.py @@ -109,12 +109,6 @@ for name, action in views.enabled_root_actions().items(): def routes(): """ List of all connected API routes - - .. :quickref: Global; Routes - - :>header Accept: application/json - :>header Content-Type: application/json - :status 200: stream active """ return jsonify(list_routes(app)) @@ -123,12 +117,6 @@ def routes(): def err_log(): """ Most recent 1mb of log output - - .. :quickref: Global; Log - - :>header Accept: application/json - :>header Content-Type: application/json - :status 200: stream active """ timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M-%S") return send_file( diff --git a/openflexure_microscope/common/flask_labthings/views/extensions.py b/openflexure_microscope/common/flask_labthings/views/extensions.py index 66684682..836af0bb 100644 --- a/openflexure_microscope/common/flask_labthings/views/extensions.py +++ b/openflexure_microscope/common/flask_labthings/views/extensions.py @@ -18,8 +18,6 @@ class ExtensionList(View): """ Return the current Extension forms - .. :quickref: Extension; Get forms - Returns an array of present Extension forms (describing Extension user interfaces.) Please note, this is *not* a list of all enabled Extensions, only those with associated user interface forms.