mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-16 13:46:54 +00:00
typing
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user