diff --git a/api/src/opentrons/hardware_control/modules/update.py b/api/src/opentrons/hardware_control/modules/update.py index 519bb9bbf2a..6f5a5cbe230 100644 --- a/api/src/opentrons/hardware_control/modules/update.py +++ b/api/src/opentrons/hardware_control/modules/update.py @@ -34,7 +34,6 @@ async def update_firmware( kwargs: Dict[str, Any] = { "stdout": asyncio.subprocess.PIPE, "stderr": asyncio.subprocess.PIPE, - "loop": loop, } successful, res = await module.bootloader()( flash_port_or_dfu_serial, str(firmware_file), kwargs diff --git a/api/tests/opentrons/hardware_control/test_modules.py b/api/tests/opentrons/hardware_control/test_modules.py index 49e6ba4b766..f2471bb1bc8 100644 --- a/api/tests/opentrons/hardware_control/test_modules.py +++ b/api/tests/opentrons/hardware_control/test_modules.py @@ -240,7 +240,6 @@ def async_return(result): bootloader_kwargs = { "stdout": asyncio.subprocess.PIPE, "stderr": asyncio.subprocess.PIPE, - "loop": loop, } upload_via_avrdude_mock = mock.Mock(