mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 14:41:25 +00:00
entity_instance: fix using get_info before it's defined
This commit is contained in:
@@ -379,8 +379,6 @@ class entity_instance_mixin:
|
|||||||
|
|
||||||
return return_type(_())
|
return return_type(_())
|
||||||
|
|
||||||
__dict__ = property(get_info)
|
|
||||||
|
|
||||||
def get_info(
|
def get_info(
|
||||||
self,
|
self,
|
||||||
include_identifier: bool = True,
|
include_identifier: bool = True,
|
||||||
@@ -400,3 +398,5 @@ class entity_instance_mixin:
|
|||||||
return self.get_info_py(
|
return self.get_info_py(
|
||||||
include_identifier=include_identifier, recursive=recursive, return_type=return_type, ignore=ignore
|
include_identifier=include_identifier, recursive=recursive, return_type=return_type, ignore=ignore
|
||||||
)
|
)
|
||||||
|
|
||||||
|
__dict__ = property(get_info)
|
||||||
|
|||||||
Reference in New Issue
Block a user