Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dradetsky committed Dec 7, 2024
1 parent 0eee2a9 commit 7341cf1
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(appname="dbt", appauthor="dbt-labs")
return Path(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 7341cf1

Please sign in to comment.