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

@ -1,12 +1,13 @@
"""Test the stage without creating a full HTTP server and socket connection."""
import tempfile
import itertools
import tempfile
from fastapi.testclient import TestClient
import pytest
from fastapi.testclient import TestClient
from httpx import HTTPStatusError
from hypothesis import given, settings, HealthCheck, strategies as st
from hypothesis import HealthCheck, given, settings
from hypothesis import strategies as st
import labthings_fastapi as lt
from labthings_fastapi.exceptions import NotConnectedToServerError
@ -17,7 +18,6 @@ from openflexure_microscope_server.things.stage import (
)
from openflexure_microscope_server.things.stage.dummy import DummyStage
from .mock_things.mock_cancel import MockCancel
# Keep the size and number of moves fairly small or the tests can take forever