Skip to content

Commit

Permalink
adds small delay to make sure instruments are cached after flashing
Browse files Browse the repository at this point in the history
  • Loading branch information
andySigler committed Jul 27, 2023
1 parent 7305ecc commit 50b249a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Firmware Check."""
from asyncio import run
from asyncio import run, sleep
from typing import List

from opentrons.hardware_control.ot3api import OT3API
Expand Down Expand Up @@ -42,6 +42,8 @@ async def _main(simulate: bool, subsystems: List[SubSystem]) -> None:
print("done")
if api.is_simulator:
break
else:
await sleep(1)


if __name__ == "__main__":
Expand Down

0 comments on commit 50b249a

Please sign in to comment.