Skip to content

Commit

Permalink
sets schema for node before parsing raw sql (#541)
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  fd17c2e
  • Loading branch information
drewbanin authored and iknox-fa committed Feb 8, 2022
1 parent 1e66386 commit 039cffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/dbt/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ def coalesce(*args):


def get_profile_from_project(project):
target_name = project.get('target', {})
profile = project.get('outputs', {}).get(target_name, {})
target_name = project.get("target", {})
profile = project.get("outputs", {}).get(target_name, {})
return profile


Expand Down

0 comments on commit 039cffb

Please sign in to comment.