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:
parent
6213620031
commit
161c17812e
1 changed files with 2 additions and 1 deletions
|
|
@ -372,7 +372,8 @@ class FastAutofocusAPI(View):
|
||||||
|
|
||||||
|
|
||||||
autofocus_extension_v2 = BaseExtension(
|
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")
|
autofocus_extension_v2.add_method(fast_autofocus, "fast_autofocus")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue