This commit is contained in:
Andrej730
2025-03-21 12:53:13 +05:00
parent a567af370b
commit e075c32a5a
19 changed files with 90 additions and 77 deletions
+3 -2
View File
@@ -21,7 +21,7 @@ import ifcopenshell
import ifcopenshell.api
import ifcopenshell.util.representation
from ifcopenshell import template
from typing import Union
from typing import Union, Any
class SvIfcStore:
@@ -30,7 +30,8 @@ class SvIfcStore:
schema = None
cache = None
cache_path = None
id_map = {}
id_map: dict[str, Any] = {}
"""Mapping `{node_id: Any}`"""
guid_map = {}
deleted_ids = set()
edited_objs = set()