From 529a0c41b5261f3319b4ff9839f159fd9a4ecd2c Mon Sep 17 00:00:00 2001 From: tymokvo Date: Mon, 4 Dec 2017 12:21:42 -0800 Subject: [PATCH] fixed missing bracket --- src/ifcopenshell-python/ifcopenshell/geom/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/geom/main.py b/src/ifcopenshell-python/ifcopenshell/geom/main.py index 14b1f84827..92d57f005f 100644 --- a/src/ifcopenshell-python/ifcopenshell/geom/main.py +++ b/src/ifcopenshell-python/ifcopenshell/geom/main.py @@ -136,7 +136,8 @@ class tree(ifcopenshell_wrapper.tree): args.append(kwargs.get("completely_within", False)) if "extend" in kwargs: args.append(kwargs.get("extend", -1.e-5)) - return [entity_instance(e) for e in ifcopenshell_wrapper.tree.select_box(*args) + return [entity_instance(e) for e in ifcopenshell_wrapper.tree.select_box(*args)] + def create_shape(settings, inst, repr=None): """