Skip to content

Commit 14f5599

Browse files
committed
chore: revert abs path
1 parent 32ec191 commit 14f5599

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ def load_mf_config() -> MfCliConfig:
4040
"""
4141
load_dotenv()
4242

43-
project_dir = os.path.abspath(os.environ.get("DBT_PROJECT_DIR")) if os.environ.get("DBT_PROJECT_DIR") else None
44-
profiles_dir = os.path.abspath(os.environ.get("DBT_PROFILES_DIR", os.path.expanduser("~/.dbt")))
43+
project_dir = os.environ.get("DBT_PROJECT_DIR")
44+
profiles_dir = os.environ.get("DBT_PROFILES_DIR", os.path.expanduser("~/.dbt"))
4545
mf_path = os.environ.get("MF_PATH", "mf")
4646
tmp_dir = os.environ.get("MF_TMP_DIR", os.path.join(os.path.expanduser("~/.dbt"), "metricflow"))
4747

0 commit comments

Comments
 (0)