From 6f643bad0c3b2dd4d4ef65012d9aa41f9f86b058 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 22 Jul 2026 10:55:40 +0500 Subject: [PATCH] entity_instance: fix using `get_info` before it's defined --- src/ifcopenshell-python/ifcopenshell/entity_instance.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifcopenshell-python/ifcopenshell/entity_instance.py b/src/ifcopenshell-python/ifcopenshell/entity_instance.py index dc0fd59abd..2905f647e7 100644 --- a/src/ifcopenshell-python/ifcopenshell/entity_instance.py +++ b/src/ifcopenshell-python/ifcopenshell/entity_instance.py @@ -379,8 +379,6 @@ class entity_instance_mixin: return return_type(_()) - __dict__ = property(get_info) - def get_info( self, include_identifier: bool = True, @@ -400,3 +398,5 @@ class entity_instance_mixin: return self.get_info_py( include_identifier=include_identifier, recursive=recursive, return_type=return_type, ignore=ignore ) + + __dict__ = property(get_info)