entity_instance: fix using get_info before it's defined

This commit is contained in:
Andrej730
2026-07-22 10:55:40 +05:00
parent 4275b23a27
commit 6f643bad0c
@@ -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)