-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(api): remove feature-flag dependency from calibration_storage (
#13833) * Removed FF dependency when importing calibration_storage, moved around where imports are publicized * robot server import changes to match new calibration_storage import methodology * Split some tests into ot2/ot3 variants * Modified settings reset to have to be specified as OT2 or OT3 by caller * removed tip length cal utils on OT3 because they are not used ever * Fixed robot server calibration flows to avoid importing OT-3 utilities that are irrelevant to OT-2 workflows
- Loading branch information
Showing
27 changed files
with
388 additions
and
501 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,34 @@ | ||
from . import ( | ||
models as ot2_models, | ||
models, | ||
mark_bad_calibration, | ||
) | ||
from .pipette_offset import ( | ||
save_pipette_calibration, | ||
clear_pipette_offset_calibrations, | ||
get_pipette_offset, | ||
delete_pipette_offset_file, | ||
) | ||
|
||
from .tip_length import ( | ||
clear_tip_length_calibration, | ||
create_tip_length_data, | ||
save_tip_length_calibration, | ||
tip_lengths_for_pipette, | ||
load_tip_length_calibration, | ||
delete_tip_length_calibration, | ||
) | ||
|
||
__all__ = [ | ||
"ot2_models", | ||
"models", | ||
"mark_bad_calibration", | ||
"save_pipette_calibration", | ||
"clear_pipette_offset_calibrations", | ||
"get_pipette_offset", | ||
"delete_pipette_offset_file", | ||
"clear_tip_length_calibration", | ||
"create_tip_length_data", | ||
"save_tip_length_calibration", | ||
"tip_lengths_for_pipette", | ||
"load_tip_length_calibration", | ||
"delete_tip_length_calibration", | ||
] |
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,10 +1,31 @@ | ||
from . import ( | ||
models as ot3_models, | ||
gripper_offset as ot3_gripper_offset, | ||
models, | ||
gripper_offset as gripper_offset, | ||
) | ||
from .pipette_offset import ( | ||
save_pipette_calibration, | ||
clear_pipette_offset_calibrations, | ||
get_pipette_offset, | ||
delete_pipette_offset_file, | ||
) | ||
from .module_offset import ( | ||
save_module_calibration, | ||
clear_module_offset_calibrations, | ||
get_module_offset, | ||
delete_module_offset_file, | ||
load_all_module_offsets, | ||
) | ||
|
||
|
||
__all__ = [ | ||
"ot3_models", | ||
"ot3_gripper_offset", | ||
"models", | ||
"gripper_offset", | ||
"save_pipette_calibration", | ||
"clear_pipette_offset_calibrations", | ||
"get_pipette_offset", | ||
"delete_pipette_offset_file", | ||
"save_module_calibration", | ||
"clear_module_offset_calibrations", | ||
"get_module_offset", | ||
"delete_module_offset_file", | ||
"load_all_module_offsets", | ||
] |
181 changes: 0 additions & 181 deletions
181
api/src/opentrons/calibration_storage/ot3/tip_length.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.