From f2cae79dea3c1b998738804d3e5f14c470cd724d Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 15 Jan 2024 12:01:18 +0100 Subject: [PATCH] #4220 Update entity_instance.py --- src/ifcopenshell-python/ifcopenshell/entity_instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/entity_instance.py b/src/ifcopenshell-python/ifcopenshell/entity_instance.py index f624effa1e..df7febf5d2 100644 --- a/src/ifcopenshell-python/ifcopenshell/entity_instance.py +++ b/src/ifcopenshell-python/ifcopenshell/entity_instance.py @@ -139,7 +139,7 @@ class entity_instance(object): # ugh circular imports, name collisions from . import file - return file.file.from_pointer(self.wrapped_data.file_pointer()) + return file.from_pointer(self.wrapped_data.file_pointer()) def __getattr__(self, name): INVALID, FORWARD, INVERSE = range(3)