Skip to content

Commit 0559947

Browse files
committed
review feedback
1 parent 23dac8d commit 0559947

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

matter_server/server/device_controller.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ def __init__(
111111
self.wifi_credentials_set: bool = False
112112
self.thread_credentials_set: bool = False
113113
self.compressed_fabric_id: int | None = None
114-
self._sdk_lock = asyncio.Lock()
115114
self._aiobrowser: AsyncServiceBrowser | None = None
116115
self._aiozc: AsyncZeroconf | None = None
117116
self._fallback_node_scanner_timer: asyncio.TimerHandle | None = None
@@ -247,13 +246,13 @@ async def commission_with_code(
247246
attempts,
248247
MAX_COMMISSION_RETRIES,
249248
)
250-
success: PyChipError | None = await self._call_sdk(
249+
result: PyChipError | None = await self._call_sdk(
251250
self.chip_controller.CommissionWithCode,
252251
setupPayload=code,
253252
nodeid=node_id,
254253
networkOnly=network_only,
255254
)
256-
if success and success.is_success:
255+
if result and result.is_success:
257256
break
258257
if attempts >= MAX_COMMISSION_RETRIES:
259258
raise NodeCommissionFailed(
@@ -319,7 +318,7 @@ async def commission_on_network(
319318
# by retrying, we increase the chances of a successful commission
320319
while attempts <= MAX_COMMISSION_RETRIES:
321320
attempts += 1
322-
success: PyChipError | None
321+
result: PyChipError | None
323322
if ip_addr is None:
324323
# regular CommissionOnNetwork if no IP address provided
325324
LOGGER.info(
@@ -328,7 +327,7 @@ async def commission_on_network(
328327
attempts,
329328
MAX_COMMISSION_RETRIES,
330329
)
331-
success = await self._call_sdk(
330+
result = await self._call_sdk(
332331
self.chip_controller.CommissionOnNetwork,
333332
nodeId=node_id,
334333
setupPinCode=setup_pin_code,
@@ -343,13 +342,13 @@ async def commission_on_network(
343342
attempts,
344343
MAX_COMMISSION_RETRIES,
345344
)
346-
success = await self._call_sdk(
345+
result = await self._call_sdk(
347346
self.chip_controller.CommissionIP,
348347
nodeid=node_id,
349348
setupPinCode=setup_pin_code,
350349
ipaddr=ip_addr,
351350
)
352-
if success and success.is_success:
351+
if result and result.is_success:
353352
break
354353
if attempts >= MAX_COMMISSION_RETRIES:
355354
raise NodeCommissionFailed(f"Commissioning failed for node {node_id}.")

0 commit comments

Comments
 (0)