Added a description field using docstrings
This commit is contained in:
parent
eb321220c6
commit
c2d27e8f56
2 changed files with 9 additions and 1 deletions
|
|
@ -18,6 +18,9 @@ class MeasureSharpnessAPI(MicroscopeViewPlugin):
|
|||
|
||||
|
||||
class AutofocusAPI(MicroscopeViewPlugin):
|
||||
"""
|
||||
Run a standard autofocus
|
||||
"""
|
||||
def post(self):
|
||||
payload = JsonResponse(request)
|
||||
|
||||
|
|
@ -36,6 +39,9 @@ class AutofocusAPI(MicroscopeViewPlugin):
|
|||
|
||||
|
||||
class FastAutofocusAPI(MicroscopeViewPlugin):
|
||||
"""
|
||||
Run a fast autofocus
|
||||
"""
|
||||
def post(self):
|
||||
payload = JsonResponse(request)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue