Skip to content

Commit

Permalink
fixed 336 __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
gfabbris committed Jan 19, 2022
1 parent acd24d7 commit 8134b15
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions apstools/devices/lakeshore_controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@ def __init__(self, *args, loop_number=None, timeout=10 * HOUR, **kwargs):
timeout=timeout,
tolerance=0.1,
readback_pv=f"IN{loop_number}",
setpoint_pv=f"OUT{loop_number}",
**kwargs
)
self._settle_time = 0
Expand Down Expand Up @@ -237,7 +236,11 @@ class LS340_LoopBase(PVPositionerSoftDoneWithStop):
def __init__(self, *args, loop_number=None, timeout=10 * HOUR, **kwargs):
self.loop_number = loop_number
super().__init__(
*args, timeout=timeout, tolerance=0.1, **kwargs
*args,
readback_pv="ignore",
timeout=timeout,
tolerance=0.1,
**kwargs
)
self._settle_time = 0

Expand Down

0 comments on commit 8134b15

Please sign in to comment.