From d69333740d0f5a0e23e8699fd64fb462fd1a7fd0 Mon Sep 17 00:00:00 2001 From: Derek Maggio Date: Fri, 26 Apr 2024 08:42:34 -0700 Subject: [PATCH] formatting --- .../python/opentrons_shared_data/performance/dev_types.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shared-data/python/opentrons_shared_data/performance/dev_types.py b/shared-data/python/opentrons_shared_data/performance/dev_types.py index 33b30a08ed9..07d6c4dce8c 100644 --- a/shared-data/python/opentrons_shared_data/performance/dev_types.py +++ b/shared-data/python/opentrons_shared_data/performance/dev_types.py @@ -10,7 +10,9 @@ class SupportsTracking(Protocol): """Protocol for classes that support tracking of robot context.""" - def __init__(self, storage_location: Path, should_track: bool, store_each: bool) -> None: + def __init__( + self, storage_location: Path, should_track: bool, store_each: bool + ) -> None: """Initialize the tracker.""" ...