From 8ce2c46a2fc8a4099133fbaa9c5d7c2ebb415944 Mon Sep 17 00:00:00 2001 From: Doug Beatty <44704949+dbeatty10@users.noreply.github.com> Date: Mon, 16 Sep 2024 10:02:30 -0600 Subject: [PATCH] [tidy first] Fix a couple misspellings (#10717) --- core/dbt/graph/selector.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/dbt/graph/selector.py b/core/dbt/graph/selector.py index f48544588d9..cc0b4ebe9fc 100644 --- a/core/dbt/graph/selector.py +++ b/core/dbt/graph/selector.py @@ -333,9 +333,9 @@ def get_selected(self, spec: SelectionSpec) -> Set[UniqueId]: def get_graph_queue(self, spec: SelectionSpec, preserve_edges: bool = True) -> GraphQueue: """Returns a queue over nodes in the graph that tracks progress of - dependecies. + dependencies. """ - # Filtering hapens in get_selected + # Filtering happens in get_selected selected_nodes = self.get_selected(spec) # Save to global variable selected_resources.set_selected_resources(selected_nodes)