Skip to content

Commit

Permalink
Add missing await.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed Jan 18, 2022
1 parent 2f3fb6c commit 5c4566e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/opentrons/protocol_runner/protocol_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ async def run(
# TODO(mc, 2022-01-11): move load to runner creation, remove from `run`
# currently `protocol_source` arg is only used by tests
if protocol_source:
self.load(protocol_source)
await self.load(protocol_source)

self.play()
self._task_queue.start()
Expand Down

0 comments on commit 5c4566e

Please sign in to comment.