Skip to content

Commit

Permalink
IDM-10.2: Fix provisional check (project-chip#35407)
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille authored and shgutte committed Sep 10, 2024
1 parent 1fc36d5 commit d480e97
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/python_testing/spec_parsing_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,9 @@ def __init__(self, cluster, cluster_id, name):
except (KeyError, StopIteration):
self._derived = None

if list(cluster.iter('provisionalConform')):
self._is_provisional = True
for id in cluster.iter('clusterIds'):
if list(id.iter('provisionalConform')):
self._is_provisional = True

try:
classification = next(cluster.iter('classification'))
Expand Down

0 comments on commit d480e97

Please sign in to comment.