Skip to content

Commit

Permalink
Merge pull request #121 from agoenergy/fix/resolve_path_of_datadir
Browse files Browse the repository at this point in the history
resolve path of default datadir
  • Loading branch information
markushal authored Nov 20, 2023
2 parents c48e009 + 5d30bad commit afb14f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ptxboa/api_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def _load_data(data_dir, name: str) -> pd.DataFrame:
return df


DATA_DIR = Path(__file__).parent / "data"
DATA_DIR = Path(__file__).parent.resolve() / "data"

PARAMETER_DIMENSIONS = {
"CALOR": {"required": ["flow_code"], "global_default": False},
Expand Down

0 comments on commit afb14f5

Please sign in to comment.