@@ -111,7 +111,6 @@ def __init__(
111
111
self .wifi_credentials_set : bool = False
112
112
self .thread_credentials_set : bool = False
113
113
self .compressed_fabric_id : int | None = None
114
- self ._sdk_lock = asyncio .Lock ()
115
114
self ._aiobrowser : AsyncServiceBrowser | None = None
116
115
self ._aiozc : AsyncZeroconf | None = None
117
116
self ._fallback_node_scanner_timer : asyncio .TimerHandle | None = None
@@ -247,13 +246,13 @@ async def commission_with_code(
247
246
attempts ,
248
247
MAX_COMMISSION_RETRIES ,
249
248
)
250
- success : PyChipError | None = await self ._call_sdk (
249
+ result : PyChipError | None = await self ._call_sdk (
251
250
self .chip_controller .CommissionWithCode ,
252
251
setupPayload = code ,
253
252
nodeid = node_id ,
254
253
networkOnly = network_only ,
255
254
)
256
- if success and success .is_success :
255
+ if result and result .is_success :
257
256
break
258
257
if attempts >= MAX_COMMISSION_RETRIES :
259
258
raise NodeCommissionFailed (
@@ -319,7 +318,7 @@ async def commission_on_network(
319
318
# by retrying, we increase the chances of a successful commission
320
319
while attempts <= MAX_COMMISSION_RETRIES :
321
320
attempts += 1
322
- success : PyChipError | None
321
+ result : PyChipError | None
323
322
if ip_addr is None :
324
323
# regular CommissionOnNetwork if no IP address provided
325
324
LOGGER .info (
@@ -328,7 +327,7 @@ async def commission_on_network(
328
327
attempts ,
329
328
MAX_COMMISSION_RETRIES ,
330
329
)
331
- success = await self ._call_sdk (
330
+ result = await self ._call_sdk (
332
331
self .chip_controller .CommissionOnNetwork ,
333
332
nodeId = node_id ,
334
333
setupPinCode = setup_pin_code ,
@@ -343,13 +342,13 @@ async def commission_on_network(
343
342
attempts ,
344
343
MAX_COMMISSION_RETRIES ,
345
344
)
346
- success = await self ._call_sdk (
345
+ result = await self ._call_sdk (
347
346
self .chip_controller .CommissionIP ,
348
347
nodeid = node_id ,
349
348
setupPinCode = setup_pin_code ,
350
349
ipaddr = ip_addr ,
351
350
)
352
- if success and success .is_success :
351
+ if result and result .is_success :
353
352
break
354
353
if attempts >= MAX_COMMISSION_RETRIES :
355
354
raise NodeCommissionFailed (f"Commissioning failed for node { node_id } ." )
0 commit comments