Skip to content

Commit

Permalink
fix: #7586, Remove unused check_new method (#7756)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinneville authored May 9, 2024
1 parent 55aad32 commit 994a089
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Fixes-20230601-204157.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Fixes
body: Remove unused check_new method
time: 2023-06-01T20:41:57.556342+02:00
custom:
Author: kevinneville
Issue: "7586"
3 changes: 0 additions & 3 deletions core/dbt/graph/selector_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,9 +727,6 @@ def check_modified_contract(old: Optional[SelectorTarget], new: SelectorTarget)

return check_modified_contract

def check_new(self, old: Optional[SelectorTarget], new: SelectorTarget) -> bool:
return old is None

def search(self, included_nodes: Set[UniqueId], selector: str) -> Iterator[UniqueId]:
if self.previous_state is None or self.previous_state.manifest is None:
raise DbtRuntimeError("Got a state selector method, but no comparison manifest")
Expand Down

0 comments on commit 994a089

Please sign in to comment.