Skip to content

Commit

Permalink
missing single quotes for a printed type
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleon95 committed Apr 15, 2024
1 parent 55b6c19 commit 8b9a165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/opentrons/protocols/parameters/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def _validate_min_and_max(
)
if not isinstance(maximum, parameter_type):
raise ParameterDefinitionError(
f"Maximum is type {type(maximum).__name__},"
f"Maximum is type '{type(maximum).__name__}',"
f" but must be of parameter type '{parameter_type.__name__}'"
)
# These asserts are for the type checker and should never actually be asserted false
Expand Down

0 comments on commit 8b9a165

Please sign in to comment.