Skip to content

Commit

Permalink
Fixed describe() in core/detector.py to be async
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Copping committed Apr 16, 2024
1 parent 1472c0c commit 412a3fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ophyd_async/core/detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ async def read(self) -> Dict[str, Reading]:
# All data is in StreamResources, not Events, so nothing to output here
return {}

def describe(self) -> Dict[str, Descriptor]:
async def describe(self) -> Dict[str, Descriptor]:
return self._describe

@AsyncStatus.wrap
Expand Down

0 comments on commit 412a3fc

Please sign in to comment.