Fix #1288 - error when importing consecutive files.

This commit is contained in:
Dion Moult
2021-02-03 17:30:19 +11:00
parent 2f2b4e7dc2
commit 9717d6b1eb
18 changed files with 115 additions and 1 deletions
@@ -15,6 +15,20 @@ class Data:
products = {}
_file = None
@classmethod
def purge(cls):
cls.is_loaded = False
cls.materials = {}
cls.constituent_sets = {}
cls.constituents = {}
cls.layer_sets = {}
cls.layers = {}
cls.profile_sets = {}
cls.profiles = {}
cls.lists = {}
cls.products = {}
cls._file = None
@classmethod
def load(cls, product_id=None):
cls._file = IfcStore.get_file()