Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
burkeds committed Jun 25, 2024
1 parent febd81f commit 2e79e5e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ophyd_async/tango/device_controllers/sis3820.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

from typing import Dict

# from bluesky.protocols import Triggerable
from bluesky.protocols import Reading
from bluesky.protocols import Reading, Triggerable

from ophyd_async.core import AsyncStatus
from ophyd_async.tango import TangoReadableDevice, tango_signal_rw, tango_signal_x


# --------------------------------------------------------------------
class SIS3820Counter(TangoReadableDevice): # Triggerable
class SIS3820Counter(TangoReadableDevice, Triggerable):
src_dict: dict = {
"counts": "/counts",
"offset": "/offset",
Expand Down

0 comments on commit 2e79e5e

Please sign in to comment.