Code formatting
This commit is contained in:
parent
0234b20ce3
commit
2bfb988460
60 changed files with 392 additions and 396 deletions
|
|
@ -5,19 +5,15 @@ Here we include some classes used frequently in plugin development,
|
|||
as well as some Flask imports to simplify API route development
|
||||
"""
|
||||
|
||||
from openflexure_microscope.api.utilities import JsonResponse
|
||||
# Flask things
|
||||
from flask import Response, abort, escape, request
|
||||
|
||||
# Task management
|
||||
from labthings import (
|
||||
current_action as current_task,
|
||||
update_action_progress as update_task_progress,
|
||||
update_action_data as update_task_data,
|
||||
)
|
||||
|
||||
|
||||
# Flask things
|
||||
from flask import abort, escape, Response, request
|
||||
from labthings import current_action as current_task
|
||||
from labthings import update_action_data as update_task_data
|
||||
from labthings import update_action_progress as update_task_progress
|
||||
|
||||
from openflexure_microscope.api.utilities import JsonResponse
|
||||
|
||||
__all__ = [
|
||||
"current_task",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue