hyundai-kia-connect-api 3.35.7__py2.py3-none-any.whl → 3.35.8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -200,17 +200,25 @@ class ApiImplType1(ApiImpl):
200
200
  state, "Cabin.Door.Row2.Right.Open"
201
201
  )
202
202
 
203
- vehicle.front_left_door_is_locked = get_child_value(
204
- state, "Cabin.Door.Row1.Driver.Open"
205
- )
206
- vehicle.front_right_door_is_locked = get_child_value(
207
- state, "Cabin.Door.Row1.Passenger.Lock"
208
- )
209
- vehicle.back_left_door_is_locked = get_child_value(
210
- state, "Cabin.Door.Row2.Left.Lock"
211
- )
212
- vehicle.back_right_door_is_locked = get_child_value(
213
- state, "Cabin.Door.Row2.Right.Lock"
203
+ vehicle.front_left_door_is_locked = (
204
+ bool(get_child_value(state, "Cabin.Door.Row1.Driver.Open"))
205
+ if get_child_value(state, "Cabin.Door.Row1.Driver.Open") is not None
206
+ else None
207
+ )
208
+ vehicle.front_right_door_is_locked = (
209
+ bool(get_child_value(state, "Cabin.Door.Row1.Passenger.Lock"))
210
+ if get_child_value(state, "Cabin.Door.Row1.Passenger.Lock") is not None
211
+ else None
212
+ )
213
+ vehicle.back_left_door_is_locked = (
214
+ bool(get_child_value(state, "Cabin.Door.Row2.Left.Lock"))
215
+ if get_child_value(state, "Cabin.Door.Row2.Left.Lock") is not None
216
+ else None
217
+ )
218
+ vehicle.back_right_door_is_locked = (
219
+ bool(get_child_value(state, "Cabin.Door.Row2.Right.Lock"))
220
+ if get_child_value(state, "Cabin.Door.Row2.Right.Lock") is not None
221
+ else None
214
222
  )
215
223
 
216
224
  vehicle.is_locked = (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: hyundai_kia_connect_api
3
- Version: 3.35.7
3
+ Version: 3.35.8
4
4
  Summary: Python Boilerplate contains all the boilerplate you need to create a Python package.
5
5
  Home-page: https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api
6
6
  Author: Fuat Akgun
@@ -1,5 +1,5 @@
1
1
  hyundai_kia_connect_api/ApiImpl.py,sha256=UeG2FH4KCdU5LvGp5Ks793vrWbwBx8MN_DedbVRRouM,9612
2
- hyundai_kia_connect_api/ApiImplType1.py,sha256=X9NMmBsQF0c_JplKDTcZIDbjbkBAxVgRVbrfk1-72bk,32189
2
+ hyundai_kia_connect_api/ApiImplType1.py,sha256=XyAU3y--gyvfC0Ug1EC_C3zKfRAUHfzKB0IK4dt5J-A,32633
3
3
  hyundai_kia_connect_api/HyundaiBlueLinkApiUSA.py,sha256=jmIRXaheaV0FLi_F51HLcFTxmjvz7GkGvS5lmAMCCPI,36844
4
4
  hyundai_kia_connect_api/KiaUvoApiAU.py,sha256=ScrgOrz5ZgaPycwPWOwDGUPlO3QvADcpHDiX7SUlV0s,39556
5
5
  hyundai_kia_connect_api/KiaUvoApiCA.py,sha256=S22I00zKnt-bPpQpuw3EyT8Kv4rWw8Z88rkX_pjLrgk,32377
@@ -14,10 +14,10 @@ hyundai_kia_connect_api/bluelink.py,sha256=JiNIHl-Qi8zwqyN6ywKg5CdXOLT74WkvpjVcn
14
14
  hyundai_kia_connect_api/const.py,sha256=gFAhj9-YgrJNd7ZjYr4Qu1Yf4v-RhmyON1MJDN0eR90,2281
15
15
  hyundai_kia_connect_api/exceptions.py,sha256=m7gyDnvA5OVAK4EXSP_ZwE0s0uV8HsGUV0tiYwqofK0,1343
16
16
  hyundai_kia_connect_api/utils.py,sha256=J0aXUX-nKIoS3XbelatNh-DZlHRU2_DYz_Mg_ZUKQJU,1957
17
- hyundai_kia_connect_api-3.35.7.dist-info/licenses/AUTHORS.rst,sha256=T77OE1hrQF6YyDE6NbdMKyL66inHt7dnjHAzblwuk2A,155
18
- hyundai_kia_connect_api-3.35.7.dist-info/licenses/LICENSE,sha256=49hmc755oyMwKdZ-2epiorjStRB0PfcZR1w5_NXZPgs,1068
19
- hyundai_kia_connect_api-3.35.7.dist-info/METADATA,sha256=ZVUdVj33RmavdifBJb2Jq8IorWeNhnq2-XHFVodSwOM,7142
20
- hyundai_kia_connect_api-3.35.7.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
21
- hyundai_kia_connect_api-3.35.7.dist-info/entry_points.txt,sha256=XfrroRdyC_9q9VXjEZe5SdRPhkQyCCE4S7ZK6XSKelA,67
22
- hyundai_kia_connect_api-3.35.7.dist-info/top_level.txt,sha256=otZ7J_fN-s3EW4jD-kAearIo2OIzhQLR8DNEHIaFfds,24
23
- hyundai_kia_connect_api-3.35.7.dist-info/RECORD,,
17
+ hyundai_kia_connect_api-3.35.8.dist-info/licenses/AUTHORS.rst,sha256=T77OE1hrQF6YyDE6NbdMKyL66inHt7dnjHAzblwuk2A,155
18
+ hyundai_kia_connect_api-3.35.8.dist-info/licenses/LICENSE,sha256=49hmc755oyMwKdZ-2epiorjStRB0PfcZR1w5_NXZPgs,1068
19
+ hyundai_kia_connect_api-3.35.8.dist-info/METADATA,sha256=eQXjbBk6rMgDH4HKuq9MFBiHZ9dhuB8JAJEHUFP2lfE,7142
20
+ hyundai_kia_connect_api-3.35.8.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
21
+ hyundai_kia_connect_api-3.35.8.dist-info/entry_points.txt,sha256=XfrroRdyC_9q9VXjEZe5SdRPhkQyCCE4S7ZK6XSKelA,67
22
+ hyundai_kia_connect_api-3.35.8.dist-info/top_level.txt,sha256=otZ7J_fN-s3EW4jD-kAearIo2OIzhQLR8DNEHIaFfds,24
23
+ hyundai_kia_connect_api-3.35.8.dist-info/RECORD,,