mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2025-07-13 04:01:52 +02:00
fix(softpositioner): fixed input args for softpositioner
This commit is contained in:
@ -7,8 +7,8 @@ class SoftPositioner(_SoftPositioner):
|
|||||||
ophyd device protocol.
|
ophyd device protocol.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *, egu="", limits=None, source="computed", init_pos=None, **kwargs):
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(egu=egu, limits=limits, source=source, init_pos=init_pos, **kwargs)
|
||||||
self._destroyed = False
|
self._destroyed = False
|
||||||
|
|
||||||
def destroy(self):
|
def destroy(self):
|
||||||
|
Reference in New Issue
Block a user