From db36a78bb83a0d8a397014c0badde3c212d45eba Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Thu, 15 Feb 2024 14:39:29 -0500 Subject: [PATCH] Default LoadModuleResult.serialNumber to None. --- api/src/opentrons/protocol_engine/commands/load_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/opentrons/protocol_engine/commands/load_module.py b/api/src/opentrons/protocol_engine/commands/load_module.py index 082b88814cf..1d877d08941 100644 --- a/api/src/opentrons/protocol_engine/commands/load_module.py +++ b/api/src/opentrons/protocol_engine/commands/load_module.py @@ -87,7 +87,7 @@ class LoadModuleResult(BaseModel): ) serialNumber: Optional[str] = Field( - ..., + None, description="Hardware serial number of the connected module. " "Will be `None` if a module is not electrically connected to the robot (like the Magnetic Block).", )