Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
burkeds committed May 30, 2024
1 parent fc88243 commit b002b14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ophyd_async/tango/device_controllers/dgg2.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def update_watchers(remaining_time: float) -> None:
# --------------------------------------------------------------------
def trigger(self) -> AsyncStatus:
watchers: List[Callable] = []
return AsyncStatus(self._trigger(watchers), watchers)
return AsyncStatus(self._trigger(watchers))

# --------------------------------------------------------------------
def prepare(self, p_time: float) -> AsyncStatus:
Expand Down
2 changes: 1 addition & 1 deletion src/ophyd_async/tango/device_controllers/omsvme58.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,4 +140,4 @@ async def locate(self) -> Location:
# --------------------------------------------------------------------
def stop(self, success: bool = False) -> AsyncStatus:
self._set_success = success
return AsyncStatus(self._stop.trigger())
return self._stop.trigger()

0 comments on commit b002b14

Please sign in to comment.