We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aba7023 commit 5380da7Copy full SHA for 5380da7
src/python_testing/TC_pics_checker.py
@@ -124,7 +124,8 @@ def test_TC_IDM_10_4(self):
124
125
# TODO: consider what we want to do with the OTA clusters. They do not currently have PICS codes.
126
ota_ids = [Clusters.OtaSoftwareUpdateProvider.id, Clusters.OtaSoftwareUpdateRequestor.id]
127
- checkable_clusters = {cluster_id: cluster for cluster_id, cluster in checkable_clusters.items() if cluster_id not in ota_ids}
+ checkable_clusters = {cluster_id: cluster for cluster_id,
128
+ cluster in checkable_clusters.items() if cluster_id not in ota_ids}
129
130
self.step(2)
131
for cluster_id, cluster in checkable_clusters.items():
0 commit comments