Skip to content

Commit

Permalink
fix: missing return type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
bokajgd committed Sep 14, 2023
1 parent b8521e4 commit cd2f8f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def _get_test_group_path(pipeline_to_train: PipelineRun) -> Path:
)


def _get_test_pipeline_dir(pipeline_to_train: PipelineRun) :
def _get_test_pipeline_dir(pipeline_to_train: PipelineRun) -> Path:
"""Get the path to the directory where the pipeline is evaluated on the test set."""
return _get_test_group_path(
pipeline_to_train=pipeline_to_train,
Expand Down

0 comments on commit cd2f8f9

Please sign in to comment.