diff --git a/api/src/opentrons/hardware_control/emulation/run_emulator.py b/api/src/opentrons/hardware_control/emulation/run_emulator.py index 581c8e3185aa..c4709cec7a8b 100644 --- a/api/src/opentrons/hardware_control/emulation/run_emulator.py +++ b/api/src/opentrons/hardware_control/emulation/run_emulator.py @@ -66,4 +66,3 @@ async def run_emulator_server(host: str, port: int, emulator: AbstractEmulator) log.info(f"Starting {emulator.__class__.__name__} at {host}:{port}") server = await asyncio.start_server(ConnectionHandler(emulator), host, port) await server.serve_forever() -