Skip to content

Commit

Permalink
flake8 update found more things to complain about
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Beck committed Aug 11, 2020
1 parent d77113d commit 982395c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/dbt/graph/selector_methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def _macros_modified(self):
# we checked in the caller!
if self.previous_state is None or self.previous_state.manifest is None:
raise InternalException(
f'No deferred manifest in _macros_modified'
'No deferred manifest in _macros_modified'
)
old_macros = self.previous_state.manifest.macros
new_macros = self.manifest.macros
Expand Down Expand Up @@ -390,7 +390,7 @@ def search(
) -> Iterator[UniqueId]:
if self.previous_state is None or self.previous_state.manifest is None:
raise RuntimeException(
f'Got a state selector method, but no deferred manifest'
'Got a state selector method, but no deferred manifest'
)

state_checks = {
Expand Down

0 comments on commit 982395c

Please sign in to comment.