Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
dustalov committed Aug 17, 2024
1 parent 6b10137 commit 24d3402
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/evalica/test_evalica.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,11 @@ def test_llmfao_performance(llmfao: Comparison, algorithm: str, solver: str, ben


@pytest.mark.parametrize("solver", ["pyo3", "naive"])
def test_llmfao_pairwise_scores(llmfao: Comparison, solver: str, benchmark: BenchmarkFixture) -> None:
def test_llmfao_pairwise_scores(
llmfao: Comparison,
solver: Literal["pyo3", "naive"],
benchmark: BenchmarkFixture,
) -> None:
result = evalica.counting(*llmfao)

func = partial(evalica.pairwise_scores, result.scores.to_numpy(), solver=solver)
Expand Down

0 comments on commit 24d3402

Please sign in to comment.