Updated all log strings to new format
This commit is contained in:
parent
36e837d374
commit
9f5252194a
35 changed files with 121 additions and 715 deletions
|
|
@ -38,7 +38,7 @@ sys.modules.update((mod_name, Mock()) for mod_name in mock_imports)
|
|||
# -- Project information -----------------------------------------------------
|
||||
|
||||
project = "OpenFlexure Microscope Software"
|
||||
copyright = "2018, Bath Open Instrumentation Group"
|
||||
copyright = "2018, Bath Open Instrumentation Group" # pylint: disable=redefined-builtin
|
||||
author = "Bath Open Instrumentation Group"
|
||||
|
||||
# The short X.Y version
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
from labthings import Schema, fields, find_component
|
||||
from labthings.extensions import BaseExtension
|
||||
from labthings.views import PropertyView, View
|
||||
from labthings.views import PropertyView
|
||||
|
||||
## Extension methods
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ import io # Used in our capture action
|
|||
from flask import send_file # Used to send images from our server
|
||||
from labthings import Schema, fields, find_component
|
||||
from labthings.extensions import BaseExtension
|
||||
from labthings.views import ActionView, PropertyView, View
|
||||
from labthings.views import ActionView, PropertyView
|
||||
|
||||
## Extension methods
|
||||
|
||||
|
|
|
|||
|
|
@ -1,16 +1,8 @@
|
|||
import io # Used in our capture action
|
||||
import time # Used in our timelapse function
|
||||
|
||||
from flask import send_file # Used to send images from our server
|
||||
from labthings import (
|
||||
Schema,
|
||||
current_action,
|
||||
fields,
|
||||
find_component,
|
||||
update_action_progress,
|
||||
)
|
||||
from labthings import current_action, fields, find_component, update_action_progress
|
||||
from labthings.extensions import BaseExtension
|
||||
from labthings.views import ActionView, PropertyView, View
|
||||
from labthings.views import ActionView
|
||||
|
||||
# Used in our timelapse function
|
||||
from openflexure_microscope.captures.capture_manager import generate_basename
|
||||
|
|
|
|||
|
|
@ -1,16 +1,8 @@
|
|||
import io # Used in our capture action
|
||||
import time # Used in our timelapse function
|
||||
|
||||
from flask import send_file # Used to send images from our server
|
||||
from labthings import (
|
||||
Schema,
|
||||
current_action,
|
||||
fields,
|
||||
find_component,
|
||||
update_action_progress,
|
||||
)
|
||||
from labthings import current_action, fields, find_component, update_action_progress
|
||||
from labthings.extensions import BaseExtension
|
||||
from labthings.views import ActionView, PropertyView, View
|
||||
from labthings.views import ActionView
|
||||
|
||||
# Used to convert our GUI dictionary into a complete eV extension GUI
|
||||
from openflexure_microscope.api.utilities.gui import build_gui
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue