Skip to content

Commit

Permalink
fn order
Browse files Browse the repository at this point in the history
  • Loading branch information
heysweet committed Mar 24, 2024
1 parent b14ec65 commit 618957e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/graph/selector_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def search(self, included_nodes: Set[UniqueId], selector: str) -> Iterator[Uniqu
"""yields nodes from included in the specified group"""
for node, real_node in self.groupable_nodes(included_nodes):
node_group = real_node.config.get("group")
if node_group and fnmatch(selector, node_group):
if node_group and fnmatch(node_group, selector):
yield node


Expand Down

0 comments on commit 618957e

Please sign in to comment.