Skip to content

Commit 31bc7f1

Browse files
Added type:ignore to sim_stage.py
1 parent 598044e commit 31bc7f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/sim_devices/sim_stage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ async def _move(self, old_position: float, new_position: float, move_time: float
6969
new_positions = np.interp(
7070
update_times, [0, move_time], [old_position, new_position]
7171
)
72-
for update_time, new_position in zip(update_times, new_positions, strict=True):
72+
for update_time, new_position in zip(update_times, new_positions, strict=True): # type: ignore
7373
# Calculate how long to wait to get there
7474
relative_time = time.monotonic() - start
7575
await asyncio.sleep(update_time - relative_time)

0 commit comments

Comments
 (0)