Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Should still raise if value in valid choices but write failed
Browse files Browse the repository at this point in the history
jwlodek committed Jan 27, 2025
1 parent 65c9e27 commit 20bfaac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ophyd_async/epics/core/_aioca.py
Original file line number Diff line number Diff line change
@@ -312,6 +312,8 @@ async def put(self, value: SignalDatatypeT | None, wait: bool):
f"valid choices: {self.converter.metadata.get('choices')}"
)
raise ValueError(msg) from exc
else:
raise
else:
raise

0 comments on commit 20bfaac

Please sign in to comment.