parse_ifcxml: drop the use of the removed method

This commit is contained in:
Andrej730
2026-07-22 16:09:13 +05:00
parent 32f2dfd294
commit 872efac4d2
3 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -243,7 +243,7 @@ class IfcStore:
IfcStore.file = ifcopenshell.open(filename)
return
elif extension.lower() == "ifcxml":
IfcStore.file = ifcopenshell.file(ifcopenshell.ifcopenshell_wrapper.parse_ifcxml(path))
raise NotImplementedError("Reading .ifcXML files is not currently supported.")
elif prefs.should_stream:
IfcStore.file = ifcopenshell.open(path, should_stream=True)
else: