From aa1f19102b7bad79d52063b158d5226a0513c0dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Wed, 29 May 2024 13:11:26 +0200 Subject: [PATCH] remove check --- src/caoscrawler/sync_graph.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/caoscrawler/sync_graph.py b/src/caoscrawler/sync_graph.py index 72bd3bd2..a7c27e51 100644 --- a/src/caoscrawler/sync_graph.py +++ b/src/caoscrawler/sync_graph.py @@ -343,8 +343,6 @@ class SyncGraph(): equivalent_se = self.get_equivalent(node) if equivalent_se is not None and equivalent_se is not node: self._merge_into(node, equivalent_se) - if equivalent_se.identifiable is None: - raise ValueError("Identifiable is missing") else: if node.identifiable.get_representation() in self._identifiable_look_up: raise RuntimeError("Identifiable is already in the look up") -- GitLab