Formatting

This commit is contained in:
Joel Collins 2020-11-12 14:33:08 +00:00
parent 5119e2c544
commit 6644819352
11 changed files with 16 additions and 14 deletions

View file

@ -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 = [

View file

@ -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

View file

@ -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 = []

View file

@ -1,5 +1,6 @@
import json
import logging
from .error_sources import ErrorSource
ERROR_SOURCES = []

View file

@ -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