feat: cleaned up the previous fix

This commit is contained in:
Hazel 2024-04-15 14:12:26 +02:00
parent a5ede2a6ad
commit eec252cb16

View File

@ -105,6 +105,8 @@ class OuterProxy:
self._fetched_from: dict = {}
self._inner: InnerData = InnerData(type(self), **kwargs)
self._inner._refers_to_instances.add(self)
self.__init_collections__()
for name, data_list in collection_data.items():
@ -191,16 +193,11 @@ class OuterProxy:
a, b = b, a
a._inner.__merge__(b._inner, override=override)
a._inner._refers_to_instances.update(b._inner._refers_to_instances)
if len(b._inner._refers_to_instances) > 1:
for instance in b._inner._refers_to_instances:
instance._inner = a._inner
b._inner = a._inner
b._inner._refers_to_instances.add(a)
b._inner._refers_to_instances.add(b)
def mark_as_fetched(self, *url_hash_list: List[str]):
for url_hash in url_hash_list:
self._fetched_from[url_hash] = {