Skip to content

Commit

Permalink
chore: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekMaggio committed Apr 16, 2024
1 parent f6ce258 commit 9583648
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion performance-metrics/src/performance_metrics/datashapes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Defines data classes and enums used in the performance metrics module."""

from enum import Enum
import dataclasses
from typing import Tuple
from opentrons_shared_data.performance.dev_types import RobotContextState
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
from performance_metrics.datashapes import (
RawContextData,
)
from opentrons_shared_data.performance.dev_types import RobotContextState, SupportsTracking
from opentrons_shared_data.performance.dev_types import (
RobotContextState,
SupportsTracking,
)

P = ParamSpec("P")
R = TypeVar("R")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from pathlib import Path
import pytest
from performance_metrics.robot_context_tracker import RobotContextTracker
from performance_metrics.datashapes import RobotContextState
from opentrons_shared_data.performance.dev_types import RobotContextState
from time import sleep

# Corrected times in seconds
Expand Down

0 comments on commit 9583648

Please sign in to comment.