From d1254fe4107ab02dc90d2c28ac6cae640e6e3396 Mon Sep 17 00:00:00 2001 From: Derek Maggio Date: Thu, 30 May 2024 09:32:20 -0700 Subject: [PATCH] chore: remove a comment --- api/src/opentrons/util/performance_helpers.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/api/src/opentrons/util/performance_helpers.py b/api/src/opentrons/util/performance_helpers.py index 0096ba24163..50631bd86b8 100644 --- a/api/src/opentrons/util/performance_helpers.py +++ b/api/src/opentrons/util/performance_helpers.py @@ -73,10 +73,6 @@ def _get_robot_context_tracker() -> SupportsTracking: def track_analysis(func: F) -> F: """Track the analysis of a protocol and optionally store each run.""" - # This will probably not stick around very long but it gives me - # the ability to test this on a robot - - # Typing a decorator that wraps a decorator with args, nope @functools.wraps(func) async def wrapper(*args, **kwargs): # type: ignore # noqa: ANN002, ANN003, ANN201 tracker: SupportsTracking = _get_robot_context_tracker()