Skip to content

Commit

Permalink
Remove unused argument in BimorphMirror.set
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-fernandes committed Jan 16, 2025
1 parent 6ceefb6 commit eec80b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dodal/devices/bimorph_mirror.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def __init__(self, prefix: str, number_of_channels: int, name=""):
super().__init__(name=name)

@AsyncStatus.wrap
async def set(self, value: Mapping[int, float], tolerance: float = 0.0001) -> None:
async def set(self, value: Mapping[int, float]) -> None:
"""Sets bimorph voltages in parrallel via target voltage and all proc.
Args:
Expand Down

0 comments on commit eec80b4

Please sign in to comment.