Skip to content

Commit

Permalink
removed v1 config
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  2388330
  e3fb923
  • Loading branch information
Jacob Beck authored and iknox-fa committed Feb 8, 2022
1 parent 8660435 commit c032fff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions core/dbt/parser/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,7 @@ def config_dict(
self._mangle_hooks(config_dict)
return config_dict

def render_update(
self, node: IntermediateNode, config: ContextConfig
) -> None:
def render_update(self, node: IntermediateNode, config: ContextConfig) -> None:
try:
context = self.render_with_context(node, config)
self.update_parsed_node_config(node, config, context=context)
Expand Down
4 changes: 1 addition & 3 deletions core/dbt/parser/seeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,5 @@ def resource_type(self) -> NodeType:
def get_compiled_path(cls, block: FileBlock):
return block.path.relative_path

def render_with_context(
self, parsed_node: ParsedSeedNode, config: ContextConfig
) -> None:
def render_with_context(self, parsed_node: ParsedSeedNode, config: ContextConfig) -> None:
"""Seeds don't need to do any rendering."""

0 comments on commit c032fff

Please sign in to comment.