by_type now returns tuple - update annotations and fix failing tests

This commit is contained in:
Dion Moult
2026-08-11 16:44:47 +10:00
parent b408e64e5e
commit 6bab0603e6
3 changed files with 4 additions and 4 deletions
@@ -678,7 +678,7 @@ class AddBoundary(bpy.types.Operator, tool.Ifc.Operator):
# Identify all potential building elements
# TODO: don't select everything, use AABB culling in Blender
building_elements = (
building_elements = list(
tool.Ifc.get().by_type("IfcWall")
+ tool.Ifc.get().by_type("IfcSlab")
+ tool.Ifc.get().by_type("IfcVirtualElement")