diff --git a/api/src/opentrons/protocol_engine/state/update_types.py b/api/src/opentrons/protocol_engine/state/update_types.py index c2416b4bfb5..91cdf0194a3 100644 --- a/api/src/opentrons/protocol_engine/state/update_types.py +++ b/api/src/opentrons/protocol_engine/state/update_types.py @@ -207,7 +207,7 @@ def set_pipette_location( # noqa: D102 new_deck_point=new_deck_point, ) - def set_labware_location( # noqa: D102 + def set_labware_location( self, *, labware_id: str, diff --git a/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py b/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py index 309ab41d53e..2279f2a0ebf 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py +++ b/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py @@ -1,6 +1,5 @@ """Test load pipette commands.""" from opentrons.protocol_engine.state.update_types import ( - LoadPipetteUpdate, PipetteConfigUpdate, StateUpdate, )