We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 598044e commit 31bc7f1Copy full SHA for 31bc7f1
tests/sim_devices/sim_stage.py
@@ -69,7 +69,7 @@ async def _move(self, old_position: float, new_position: float, move_time: float
69
new_positions = np.interp(
70
update_times, [0, move_time], [old_position, new_position]
71
)
72
- for update_time, new_position in zip(update_times, new_positions, strict=True):
+ for update_time, new_position in zip(update_times, new_positions, strict=True): # type: ignore
73
# Calculate how long to wait to get there
74
relative_time = time.monotonic() - start
75
await asyncio.sleep(update_time - relative_time)
0 commit comments