Fix write() call

This commit is contained in:
Thomas Krijnen
2026-01-14 14:01:05 +01:00
parent 1a4d750ecd
commit 136befde86
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -879,7 +879,7 @@ class file_mixin:
raise NotImplementedError("Writing .ifcXML files is not supported")
if format == ".ifcZIP":
return self.write(path, ".ifc", zipped=True)
self.write(str(path))
self._write(str(path))
if zipped:
unzipped_path = path.with_suffix(format)