From be7b00553fd60dfa425219b7d96eadd67c56f530 Mon Sep 17 00:00:00 2001 From: Jerry Johns Date: Fri, 19 Nov 2021 15:40:27 -0800 Subject: [PATCH] Build fix --- src/controller/python/chip/ChipDeviceCtrl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controller/python/chip/ChipDeviceCtrl.py b/src/controller/python/chip/ChipDeviceCtrl.py index a96ce874826b4a..4ca3aa94bbd0da 100644 --- a/src/controller/python/chip/ChipDeviceCtrl.py +++ b/src/controller/python/chip/ChipDeviceCtrl.py @@ -502,7 +502,7 @@ def ZCLWriteAttribute(self, cluster: str, attribute: str, nodeid, endpoint, grou except: raise UnknownAttribute(cluster, attribute) - return asyncio.run(self.WriteAttribute(nodeid, [req])) + return asyncio.run(self.WriteAttribute(nodeid, [(endpoint, req)])) def ZCLSubscribeAttribute(self, cluster, attribute, nodeid, endpoint, minInterval, maxInterval, blocking=True): device = self.GetConnectedDeviceSync(nodeid)