This commit is contained in:
Thomas Krijnen
2026-01-14 14:09:40 +01:00
parent fbbc92c5d7
commit cf3393b6a0
3 changed files with 7 additions and 3 deletions
@@ -507,7 +507,11 @@ def create_shape(
"""
return wrap_shape_creation(
settings,
ifcopenshell_wrapper.create_shape(settings, inst, repr, geometry_library) if repr else ifcopenshell_wrapper.create_shape(settings, inst, geometry_library),
(
ifcopenshell_wrapper.create_shape(settings, inst, repr, geometry_library)
if repr
else ifcopenshell_wrapper.create_shape(settings, inst, geometry_library)
),
)