Removed vestigial global statement

There was a global declaration for the modules
np and logging, probably left over from running
this code in the dodgy console plugin.  I've
removed it as it's ugly, dodgy, and no longer
needed.
This commit is contained in:
Richard Bowman 2020-04-23 11:10:36 +01:00
parent 6213620031
commit 161c17812e

View file

@ -372,7 +372,8 @@ class FastAutofocusAPI(View):
autofocus_extension_v2 = BaseExtension(
"org.openflexure.autofocus", version="2.0.0"
"org.openflexure.autofocus", version="2.0.0",
description="Actions to move the microscope in Z and pick the point with the sharpest image."
)
autofocus_extension_v2.add_method(fast_autofocus, "fast_autofocus")