-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rename RobotContextTracker to RobotActivityTracker (#15800)
# Overview Closes https://opentrons.atlassian.net/browse/EXEC-623 Renames RobotContextTracker and RobotContextState to RobotActivityTracker and RobotActivityState. This is to prevent confusion with the `RobotContext` class added in #15745 # Test Plan - [x] Make sure linting and testing passes
- Loading branch information
1 parent
7c31fa7
commit 86d75bd
Showing
9 changed files
with
132 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
"""Opentrons performance metrics library.""" | ||
|
||
from ._robot_context_tracker import RobotContextTracker | ||
from ._types import RobotContextState, SupportsTracking | ||
from ._robot_activity_tracker import RobotActivityTracker | ||
from ._types import RobotActivityState, SupportsTracking | ||
|
||
|
||
__all__ = [ | ||
"RobotContextTracker", | ||
"RobotContextState", | ||
"RobotActivityTracker", | ||
"RobotActivityState", | ||
"SupportsTracking", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.