Skip to content

Commit

Permalink
refactor(repository): use consistent naming for repository root direc…
Browse files Browse the repository at this point in the history
…tories

Task: IL-238
  • Loading branch information
Valentina Galata authored and ValentinaGalataTNG committed Mar 13, 2024
1 parent f69bb4d commit 769cf50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def aggregation_overview_ids(self) -> Sequence[str]:
)

def _aggregation_root_directory(self) -> Path:
path = self._root_directory / "aggregation"
path = self._root_directory / "aggregations"
path.mkdir(exist_ok=True)
return path

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def load_example_evaluation_from_file_name(
return sorted(example_evaluations, key=lambda i: i.example_id)

def _eval_root_directory(self) -> Path:
path = self._root_directory / "evals"
path = self._root_directory / "evaluations"
path.mkdir(exist_ok=True)
return path

Expand Down

0 comments on commit 769cf50

Please sign in to comment.