Skip to content

Commit b9c2f98

Browse files
restyled-commitsj-ororke
authored andcommitted
Restyled by autopep8
1 parent 0ca175b commit b9c2f98

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/controller/python/chip/ChipDeviceCtrl.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -2262,19 +2262,19 @@ async def CommissionOnNetwork(self, nodeId: int, setupPinCode: int,
22622262

22632263
return await asyncio.futures.wrap_future(ctx.future)
22642264

2265-
22662265
def get_rcac(self):
22672266
# Passes captured RCAC data back to python test modules to be used for validation
22682267
try:
22692268
# Assume rcac_size is the size you want to allocate
2270-
rcac_size = 650 # Allocate sufficient memory based on expected size
2269+
rcac_size = 650 # Allocate sufficient memory based on expected size
22712270
rcac_buffer = (ctypes.c_uint8 * rcac_size)() # Allocate a ctypes buffer
22722271

22732272
actual_rcac_size = ctypes.c_size_t()
22742273

22752274
# Call the C++ function to get the RCAC data
2276-
self._dmLib.pychip_GetCommissioningRCACData(ctypes.cast(rcac_buffer, ctypes.POINTER(ctypes.c_uint8)), ctypes.byref(actual_rcac_size))
2277-
2275+
self._dmLib.pychip_GetCommissioningRCACData(ctypes.cast(
2276+
rcac_buffer, ctypes.POINTER(ctypes.c_uint8)), ctypes.byref(actual_rcac_size))
2277+
22782278
# Check if data is available
22792279
if actual_rcac_size.value > 0:
22802280
# Convert the data to a Python bytes object

0 commit comments

Comments
 (0)