Skip to content

Commit

Permalink
You gotta type those fields.
Browse files Browse the repository at this point in the history
  • Loading branch information
SyntaxColoring committed May 30, 2024
1 parent a0d3694 commit 4ae4620
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/src/opentrons/protocol_engine/commands/pick_up_tip.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ class TipPhysicallyMissingError(ErrorOccurrence):
of the pipette.
"""

isDefined = True
isDefined: bool = True
errorType: Literal["tipPhysicallyMissing"] = "tipPhysicallyMissing"
errorCode = ErrorCodes.TIP_PICKUP_FAILED.value.code
detail = "No tip detected."
errorCode: str = ErrorCodes.TIP_PICKUP_FAILED.value.code
detail: str = "No tip detected."


@dataclass
Expand Down

0 comments on commit 4ae4620

Please sign in to comment.