python: Fix ifcopenshell.guid.new()

pyException:

<class 'AttributeError'>: module 'ifcopenshell' has no attribute 'guid'
This commit is contained in:
Chris Mayo
2024-10-20 12:27:00 +01:00
committed by Thomas Krijnen
parent b8d98b7512
commit 65ecb92c03
@@ -86,6 +86,7 @@ except Exception:
raise ImportError("IfcOpenShell not built for '%s'" % python_distribution)
from .file import file
from . import guid
from .entity_instance import entity_instance, register_schema_attributes
from .sql import sqlite, sqlite_entity
@@ -94,6 +95,7 @@ from .sql import sqlite, sqlite_entity
__all__ = [
"ifcopenshell_wrapper",
"file",
"guid",
"entity_instance",
"sqlite",
"sqlite_entity",