File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change log
2
2
3
+ - [ #366 ] ( https://github.com/mobilityhouse/ocpp/issues/366 ) Fix type hint of OCPP 1.6 ChangeConfiguration.value
3
4
- [ #431 ] ( https://github.com/mobilityhouse/ocpp/issues/431 ) Attributes with 'v2x' are serialized as 'V2x', but should be serialized as 'V2X'
4
5
- [ #554 ] ( https://github.com/mobilityhouse/ocpp/issues/554 ) OCPP 2.0.1 Edition 2 Errata 2023-12 document added
5
6
- [ #548 ] ( https://github.com/mobilityhouse/ocpp/issues/548 ) OCPP 2.0.1 MessageInfoType attribute name correction
8
9
9
10
## 0.24.0 (2023-12-07)
10
11
12
+
11
13
- [ #539 ] ( https://github.com/mobilityhouse/ocpp/issues/539 ) feat: Add ChargePoint._ handle_call return value. Thanks [ @wafa-yah ] ( https://github.com/wafa-yah )
12
14
- [ #266 ] ( https://github.com/mobilityhouse/ocpp/issues/266 ) fix: Central System documentation link.
13
15
- [ #516 ] ( https://github.com/mobilityhouse/ocpp/issues/516 ) OCPP 2.0.1 add additional security events from v1.3.
Original file line number Diff line number Diff line change 1
1
from dataclasses import dataclass , field
2
- from typing import Any , Dict , List , Optional
2
+ from typing import Dict , List , Optional
3
3
4
4
from ocpp .v16 .enums import (
5
5
AvailabilityType ,
@@ -55,7 +55,7 @@ class ChangeAvailabilityPayload:
55
55
@dataclass
56
56
class ChangeConfigurationPayload :
57
57
key : str
58
- value : Any
58
+ value : str
59
59
60
60
61
61
@dataclass
You can’t perform that action at this time.
0 commit comments