From 089f15a5cc7d5d7712ccc1e328b9695a98bdd0b8 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 31 Jan 2025 12:17:51 +0500 Subject: [PATCH] fix a typo --- .../ifcopenshell/api/project/append_asset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/api/project/append_asset.py b/src/ifcopenshell-python/ifcopenshell/api/project/append_asset.py index b550ea30b8..79eb418099 100644 --- a/src/ifcopenshell-python/ifcopenshell/api/project/append_asset.py +++ b/src/ifcopenshell-python/ifcopenshell/api/project/append_asset.py @@ -110,7 +110,7 @@ def append_asset( model = ifcopenshell.api.project.create_file() project = ifcopenshell.api.root.create_entity(model, ifc_class="IfcProject", name="Test") - # Now we can easily append our wall type from our libary + # Now we can easily append our wall type from our library wall_type = ifcopenshell.api.project.append_asset(model, library=library, element=wall_type) Example of adding multiple assets and avoiding duplicated inverses: