Skip to content

Commit

Permalink
use params for more compat
Browse files Browse the repository at this point in the history
  • Loading branch information
dradetsky committed Dec 7, 2024
1 parent 09da2ce commit 0eee2a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/cli/resolvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def default_profiles_dir() -> Path:
if (Path.cwd() / "profiles.yml").exists():
return Path.cwd()
else:
return user_config_dir() / Path("dbt")
return user_config_dir(appname="dbt", appauthor="dbt-labs")


def default_log_path(project_dir: Path, verify_version: bool = False) -> Path:
Expand Down

0 comments on commit 0eee2a9

Please sign in to comment.