Skip to content

Commit

Permalink
fix: 🚚 simplify path
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgasquez committed Jan 24, 2024
1 parent 8ee7412 commit 385bc61
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datadex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from .resources import HuggingFaceResource

DBT_PROJECT_DIR = os.path.dirname(os.path.abspath(__file__)) + "/../dbt/"
DATA_DIR = os.path.dirname(os.path.abspath(__file__)) + "/../data/"

dbt = DbtCliResource(project_dir=DBT_PROJECT_DIR, profiles_dir=DBT_PROJECT_DIR)

Expand All @@ -19,7 +18,7 @@
"hf": HuggingFaceResource(),
"dbt": dbt,
"io_manager": DuckDBPandasIOManager(
database=DATA_DIR + "local.duckdb",
database="data/local.duckdb",
# connection_config={"pandas_analyze_sample": 0},
),
}
Expand Down

0 comments on commit 385bc61

Please sign in to comment.