Autofix import order

This commit is contained in:
Julian Stirling 2025-12-02 16:26:15 +00:00
parent 98cdb276d8
commit 7bc4c514a6
59 changed files with 244 additions and 236 deletions

View file

@ -13,31 +13,31 @@ For these tests to reliably represent real behaviour the mock Things will need t
be tested for matching signatures with dynamically generated clients.
"""
from typing import Callable, Optional
import tempfile
import logging
import os
import shutil
import logging
import tempfile
from datetime import datetime
from typing import Callable, Optional
from fastapi import HTTPException
import pytest
from fastapi import HTTPException
from labthings_fastapi.exceptions import InvocationCancelledError
from openflexure_microscope_server.things.smart_scan import (
SmartScanThing,
ScanNotRunningError,
)
from openflexure_microscope_server.scan_directories import (
ScanData,
NotEnoughFreeSpaceError,
ScanData,
)
from openflexure_microscope_server.things.smart_scan import (
ScanNotRunningError,
SmartScanThing,
)
from .mock_things.mock_csm import MockCSMThing
from .mock_things.mock_autofocus import MockAutoFocusThing
from .mock_things.mock_stage import MockStageThing
from .mock_things.mock_camera import MockCameraThing
from .mock_things.mock_csm import MockCSMThing
from .mock_things.mock_stage import MockStageThing
# A global logger to pass in as an Invocation Logger
LOGGER = logging.getLogger("mock-invocation_logger")