Skip to content

Commit

Permalink
Fix scalar function error message
Browse files Browse the repository at this point in the history
  • Loading branch information
hrntsm committed Sep 5, 2024
1 parent 1e42045 commit 06cc85b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(
self._scalar_aggregation_func = weighted_sum
else:
raise ValueError(
"`scalar_aggregation_function` must be one of 'weighted_sum', 'tchebycheff', 'PBI'."
"`scalar_aggregation_func` must be one of 'weighted_sum', 'tchebycheff'."
)

def __call__(self, study: Study, population: list[FrozenTrial]) -> list[FrozenTrial]:
Expand Down

0 comments on commit 06cc85b

Please sign in to comment.