From 5c9cdadc5a5c8b66ad1daea99b3567ea33f6759f Mon Sep 17 00:00:00 2001 From: JSDu <306211150@qq.com> Date: Sun, 24 Nov 2024 18:43:03 +0800 Subject: [PATCH] fix/ParsedNode for seed node dup --- core/dbt/contracts/graph/nodes.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/dbt/contracts/graph/nodes.py b/core/dbt/contracts/graph/nodes.py index d341b167ab9..8fb5870a382 100644 --- a/core/dbt/contracts/graph/nodes.py +++ b/core/dbt/contracts/graph/nodes.py @@ -305,8 +305,6 @@ def _deserialize(cls, dct: Dict[str, int]): return SingularTestNode.from_dict(dct) elif resource_type == "operation": return HookNode.from_dict(dct) - elif resource_type == "seed": - return SeedNode.from_dict(dct) elif resource_type == "snapshot": return SnapshotNode.from_dict(dct) else: