From 64f6e9c329c6a3a0d22200795f09397ddae32fae Mon Sep 17 00:00:00 2001 From: Sanniti Date: Mon, 20 May 2024 11:24:20 -0400 Subject: [PATCH] remove outdated comment --- api/src/opentrons/protocols/execution/execute.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/src/opentrons/protocols/execution/execute.py b/api/src/opentrons/protocols/execution/execute.py index b4eb5f42bd0..68bd22470c3 100644 --- a/api/src/opentrons/protocols/execution/execute.py +++ b/api/src/opentrons/protocols/execution/execute.py @@ -28,12 +28,11 @@ def run_protocol( :param protocol: The :py:class:`.protocols.types.Protocol` to execute :param context: The protocol context to use. :param run_time_parameters_with_overrides: Run time parameters defined in the protocol, - updated with the run's RTP override values. + updated with the run's RTP override values. When we are running either simulate + or execute, this will be None (until RTP is supported in cli commands) """ if isinstance(protocol, PythonProtocol): if protocol.api_level >= APIVersion(2, 0): - # If this is None here then we're either running simulate or execute, in any case we don't need to report - # this in analysis which is the reason we'd pass it to this function exec_run( proto=protocol, context=context,