Skip to content

Commit 8a925a0

Browse files
committedSep 26, 2024
Handle error situation if classification is None
1 parent 96f1d65 commit 8a925a0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎ParseXmlFolder.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ def parse_xml_files_in_folder(folder_path):
2222

2323
# If it is a derived cluster
2424
classification = root.find('classification')
25-
baseCluster = classification.get('baseCluster')
25+
if classification is not None:
26+
baseCluster = classification.get('baseCluster')
27+
else:
28+
baseCluster = None
29+
2630

2731
# Find the clusterIds
2832
clusterIds = root.find('clusterIds')

0 commit comments

Comments
 (0)