Skip to content

Commit dc42090

Browse files
authored
Merge branch 'master' into master
2 parents f9f5cfa + d96d243 commit dc42090

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def __init__(self, *args, **kwargs):
9797
clear_display_message = "ClearDisplayMessage"
9898
cleared_charging_limit = "ClearedChargingLimit"
9999
clear_variable_monitoring = "ClearVariableMonitoring"
100-
cost_update = "CostUpdate"
100+
cost_updated = "CostUpdated"
101101
customer_information = "CustomerInformation"
102102
data_transfer = "DataTransfer"
103103
delete_certificate = "DeleteCertificate"
@@ -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)