Skip to content

Commit

Permalink
fix(api): update error message to title case (#16851)
Browse files Browse the repository at this point in the history
  • Loading branch information
TamarZanzouri authored Nov 18, 2024
1 parent 29e03ae commit c94a64c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/opentrons/protocol_engine/commands/pick_up_tip.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class TipPhysicallyMissingError(ErrorOccurrence):
isDefined: bool = True
errorType: Literal["tipPhysicallyMissing"] = "tipPhysicallyMissing"
errorCode: str = ErrorCodes.TIP_PICKUP_FAILED.value.code
detail: str = "No tip detected."
detail: str = "No Tip Detected"


_ExecuteReturn = Union[
Expand Down

0 comments on commit c94a64c

Please sign in to comment.