Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmtroffaes committed Sep 17, 2024
1 parent beddfa0 commit 592e73c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_linprog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from collections.abc import Sequence
from typing import Optional

import pytest

Expand Down Expand Up @@ -123,7 +124,7 @@ def test_linprog_1(
array: Sequence[Sequence[float]],
obj_type: LPObjType,
status: LPStatusType,
primal_solution: Sequence[float] | None,
primal_solution: Optional[Sequence[float]],
) -> None:
lp = linprog_from_array(array, obj_type=obj_type)
linprog_solve(lp)
Expand Down

0 comments on commit 592e73c

Please sign in to comment.