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

@ -7,12 +7,13 @@ See repository root for licensing information.
"""
from __future__ import annotations
import logging
from typing import Literal, Optional, Mapping
from types import TracebackType
from threading import Thread
import time
import io
import logging
import time
from threading import Thread
from types import TracebackType
from typing import Literal, Mapping, Optional
import numpy as np
from PIL import Image, ImageFilter
@ -26,8 +27,8 @@ from openflexure_microscope_server.ui import (
property_control_for,
)
from . import BaseCamera, ArrayModel
from ..stage import BaseStage
from . import ArrayModel, BaseCamera
LOGGER = logging.getLogger(__name__)