We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98094b1 commit 1bdc3edCopy full SHA for 1bdc3ed
1 file changed
src/qcodes/instrument_drivers/Galil/dmc_41x3.py
@@ -254,7 +254,7 @@ def clear_sequence(self, coord_sys: str) -> None:
254
"""
255
256
257
-class GalilDMC4133Motor(InstrumentChannel):
+class GalilDMC4133Motor(InstrumentChannel["GalilDMC4133Controller"]):
258
259
Class to control a single motor (independent of possible other motors)
260
@@ -458,7 +458,7 @@ def wait_till_motor_motion_complete(self) -> None:
458
while self.is_in_motion():
459
pass
460
except KeyboardInterrupt:
461
- self.root_instrument.abort()
+ self.parent.abort()
462
self.off()
463
464
def error_magnitude(self) -> float:
0 commit comments