We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f061f7 commit 8b2196aCopy full SHA for 8b2196a
api/src/opentrons/protocol_engine/commands/absorbance_reader/read.py
@@ -80,6 +80,10 @@ async def execute( # noqa: C901
80
raise CannotPerformModuleAction(
81
"Cannot perform Read action on Absorbance Reader without calling `.initialize(...)` first."
82
)
83
+ if abs_reader_substate.is_lid_on is False:
84
+ raise CannotPerformModuleAction(
85
+ "Absorbance Plate Reader can't read a plate with the lid open. Call `close_lid()` first."
86
+ )
87
88
# TODO: we need to return a file ID and increase the file count even when a moduel is not attached
89
if (
0 commit comments