Skip to content

Commit

Permalink
Fix unrelated type mismatch in hardware-testing override.
Browse files Browse the repository at this point in the history
Not sure how this wasn't failing CI in `edge`.
  • Loading branch information
SyntaxColoring committed Oct 18, 2024
1 parent 28a0519 commit 5951ce3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions hardware-testing/hardware_testing/gravimetric/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@
import opentrons.protocol_engine.execution.pipetting as PE_pipetting
from opentrons.protocol_engine.notes import CommandNoteAdder

from opentrons.protocol_engine import (
StateView,
WellLocation,
DropTipWellLocation,
)
from opentrons.protocol_engine import StateView
from opentrons.protocol_api.core.engine import pipette_movement_conflict


Expand Down Expand Up @@ -267,7 +263,7 @@ def _override_check_safe_for_pipette_movement(
pipette_id: str,
labware_id: str,
well_name: str,
well_location: Union[WellLocation, DropTipWellLocation],
well_location: object,
) -> None:
pass

Expand Down

0 comments on commit 5951ce3

Please sign in to comment.