Skip to content

Commit 4f3192d

Browse files
authored
fix typo in DataTypeEnum -> value_too_high (#612)
see issue #613
1 parent dbfb006 commit 4f3192d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- [#519](https://github.com/mobilityhouse/ocpp/issues/519) Typo in v201.enums.StatusInfoReasonType.invaild_schedule
2121
- [#510](https://github.com/mobilityhouse/ocpp/issues/510) v2.0.1 UnitOfMeasureType - Enums missing and update docstring to allow use for variableCharacteristics
2222
- [#508](https://github.com/mobilityhouse/ocpp/issues/508) Exception - OccurrenceConstraintViolationError doc string correction
23+
- [#613](https://github.com/mobilityhouse/ocpp/issues/613) Typo correction in v201.enums.StatusInfoReasonType.value_too_hight -> value_too_high
2324

2425
## DEPRECATED ##
2526
- [#599](https://github.com/mobilityhouse/ocpp/issues/599) v1.6 Action Enum members corrected IMPORTANT SEE UPGRADE PATH [#599](https://github.com/mobilityhouse/ocpp/issues/599)

ocpp/v201/enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1408,7 +1408,7 @@ class StatusInfoReasonType(StrEnum):
14081408
unsupported_request = "UnsupportedRequest"
14091409
value_out_of_range = "ValueOutOfRange"
14101410
value_positive_only = "ValuePositiveOnly"
1411-
value_too_hight = "ValueTooHigh"
1411+
value_too_high = "ValueTooHigh"
14121412
value_too_low = "ValueTooLow"
14131413
value_zero_not_allowed = "ValueZeroNotAllowed"
14141414
write_only = "WriteOnly"

0 commit comments

Comments
 (0)