diff --git a/sqlmesh/core/plan/builder.py b/sqlmesh/core/plan/builder.py index a48812d16c..86461d37bd 100644 --- a/sqlmesh/core/plan/builder.py +++ b/sqlmesh/core/plan/builder.py @@ -409,7 +409,7 @@ def _build_restatements( continue # Since we are traversing the graph in topological order and the largest interval range is pushed down - # the graph we just have to check our immediate parents in the graph and not the whole upstream graph. + # the graph we just have to check are immediate parents in the graph and not the whole upstream graph. restating_parents = [ self._context_diff.snapshots[s] for s in snapshot.parents if s in restatements ]