Skip to content

Commit

Permalink
Typos and typing removed
Browse files Browse the repository at this point in the history
  • Loading branch information
rjankowski committed May 7, 2020
1 parent 494c133 commit 702e5f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/dbt/graph/selector.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __str__(self):
return self._value_


def alert_non_existance(raw_spec, nodes):
def alert_non_existence(raw_spec, nodes):
if len(nodes) == 0:
warn_or_error(
f"The selector '{str(raw_spec)}' does not match any nodes and will"
Expand Down Expand Up @@ -390,8 +390,8 @@ def get_nodes_from_spec(self, graph, spec):

def get_nodes_from_multiple_specs(
self,
graph: Graph,
specs: Iterable[str],
graph,
specs,
nodes: Set[str] = None,
check_existence=False,
exclude=False
Expand All @@ -404,7 +404,7 @@ def get_nodes_from_multiple_specs(
nodes = self.get_nodes_from_spec(graph, spec)

if check_existence:
alert_non_existance(raw_spec, nodes)
alert_non_existence(raw_spec, nodes)

operator(selected_nodes, nodes)

Expand Down

0 comments on commit 702e5f8

Please sign in to comment.