Skip to content

Commit

Permalink
Fix black formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Costanzo <[email protected]>
  • Loading branch information
ianco committed Mar 22, 2021
1 parent 48112c3 commit 1a20002
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions demo/runners/support/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,9 +528,7 @@ async def start_process(self, python_path: str = None, wait: bool = True):

# start agent sub-process
loop = asyncio.get_event_loop()
future = loop.run_in_executor(
None, self._process, agent_args, my_env, loop
)
future = loop.run_in_executor(None, self._process, agent_args, my_env, loop)
self.proc = await asyncio.wait_for(future, 20, loop=loop)
if wait:
await asyncio.sleep(1.0)
Expand Down

0 comments on commit 1a20002

Please sign in to comment.