Skip to content

Commit

Permalink
[#2990] Normalize global CLI args/flags
Browse files Browse the repository at this point in the history
automatic commit by git-black, original commits:
  779c789
  9991b06
  • Loading branch information
gshank authored and iknox-fa committed Feb 8, 2022
1 parent 8620f75 commit d14d1cb
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions core/dbt/config/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,13 +389,7 @@ def from_raw_profiles(
if not raw_profile:
msg = f"Profile {profile_name} in profiles.yml is empty"
raise DbtProfileError(INVALID_PROFILE_MESSAGE.format(error_string=msg))
)
raise DbtProfileError(
INVALID_PROFILE_MESSAGE.format(
error_string=msg
)
)
user_config = raw_profiles.get('config')
user_config = raw_profiles.get("config")

return cls.from_raw_profile_info(
raw_profile=raw_profile,
Expand Down

0 comments on commit d14d1cb

Please sign in to comment.