From 1d40a59bf8ad778c30beb12dd5915220f298580e Mon Sep 17 00:00:00 2001 From: Mike Cousins Date: Fri, 25 Jun 2021 12:22:22 -0400 Subject: [PATCH] fixup: remove addressed TODO comment --- api/src/opentrons/protocol_engine/state/commands.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/src/opentrons/protocol_engine/state/commands.py b/api/src/opentrons/protocol_engine/state/commands.py index 618d9a3faed..582b5472cce 100644 --- a/api/src/opentrons/protocol_engine/state/commands.py +++ b/api/src/opentrons/protocol_engine/state/commands.py @@ -43,7 +43,6 @@ def __init__(self, state: CommandState) -> None: def get_command_by_id(self, command_id: str) -> Command: """Get a command by its unique identifier.""" - # TODO(mc, 2021-06-17): raise on missing ID, to line up with other state views try: return self._state.commands_by_id[command_id] except KeyError: