Skip to content

Commit

Permalink
IDM-10.2: Fix provisional check (#35407)
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille authored Sep 4, 2024
1 parent edd241c commit 1685777
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 1685777

Please sign in to comment.