Skip to content

Commit

Permalink
Sorted imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Copping committed Apr 16, 2024
1 parent 412a3fc commit 8886dc5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/ophyd_async/core/detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
Triggerable,
WritesStreamAssets,
)
from ophyd_async.protocols import AsyncReadable, AsyncConfigurable

from ophyd_async.protocols import AsyncConfigurable, AsyncReadable

from .async_status import AsyncStatus
from .device import Device
Expand Down
1 change: 1 addition & 0 deletions src/ophyd_async/core/signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
Stageable,
Subscribable,
)

from ophyd_async.protocols import AsyncReadable

from .async_status import AsyncStatus
Expand Down
1 change: 1 addition & 0 deletions src/ophyd_async/core/standard_readable.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from typing import Dict, Sequence, Tuple

from bluesky.protocols import Descriptor, Reading, Stageable

from ophyd_async.protocols import AsyncConfigurable, AsyncReadable

from .async_status import AsyncStatus
Expand Down
2 changes: 1 addition & 1 deletion src/ophyd_async/protocols/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .protocols import AsyncReadable, AsyncConfigurable, AsyncPausable
from .protocols import AsyncConfigurable, AsyncPausable, AsyncReadable

__all__ = ["AsyncReadable", "AsyncConfigurable", "AsyncPausable"]
3 changes: 2 additions & 1 deletion src/ophyd_async/protocols/protocols.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from abc import abstractmethod
from typing import Dict, Protocol, runtime_checkable
from bluesky.protocols import HasName, Reading, Descriptor

from bluesky.protocols import Descriptor, HasName, Reading


@runtime_checkable
Expand Down

0 comments on commit 8886dc5

Please sign in to comment.