Formatting
This commit is contained in:
parent
5119e2c544
commit
6644819352
11 changed files with 16 additions and 14 deletions
|
|
@ -1,10 +1,9 @@
|
|||
import logging
|
||||
import os
|
||||
import sys
|
||||
import platform
|
||||
import pkg_resources
|
||||
import sys
|
||||
|
||||
from .error_sources import bcolors
|
||||
import pkg_resources
|
||||
|
||||
from openflexure_microscope.paths import (
|
||||
FALLBACK_OPENFLEXURE_VAR_PATH,
|
||||
|
|
@ -13,11 +12,12 @@ from openflexure_microscope.paths import (
|
|||
|
||||
from . import (
|
||||
check_capture_reload,
|
||||
check_settings,
|
||||
check_picamera,
|
||||
check_sangaboard,
|
||||
check_settings,
|
||||
check_system,
|
||||
)
|
||||
from .error_sources import bcolors
|
||||
|
||||
# Paths for suggestions
|
||||
LOGS_PATHS = [
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
import logging
|
||||
|
||||
from openflexure_microscope.captures.capture import (
|
||||
EXIF_FORMATS,
|
||||
build_captures_from_exif,
|
||||
make_file_list,
|
||||
EXIF_FORMATS,
|
||||
)
|
||||
from openflexure_microscope.captures.capture_manager import BASE_CAPTURE_PATH
|
||||
from openflexure_microscope.config import user_settings
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
from .error_sources import ErrorSource
|
||||
|
||||
from openflexure_microscope.config import user_configuration
|
||||
|
||||
from .error_sources import ErrorSource
|
||||
|
||||
|
||||
def main():
|
||||
error_sources = []
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
import json
|
||||
import logging
|
||||
|
||||
from .error_sources import ErrorSource
|
||||
|
||||
ERROR_SOURCES = []
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
from urllib.request import urlopen
|
||||
from urllib.error import URLError
|
||||
from urllib.request import urlopen
|
||||
|
||||
import psutil
|
||||
|
||||
from .error_sources import WarningSource
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue