Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Oct 24, 2024
1 parent 463e65d commit 391c495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ilpy/_functional.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations

from collections.abc import Iterable, Mapping, Sequence
from typing import TYPE_CHECKING, Callable, Literal, Tuple
from typing import TYPE_CHECKING, Callable, Literal

from .expressions import Expression
from .wrapper import (
Expand All @@ -15,7 +15,7 @@
)

if TYPE_CHECKING:
ConstraintTuple = Tuple[list[float], Relation | str, float]
ConstraintTuple = tuple[list[float], Relation | str, float]
SenseType = Sense | Literal["minimize", "maximize"]
VariableTypeType = VariableType | Literal["continuous", "binary", "integer"]
PreferenceType = Preference | Literal["any", "cplex", "gurobi", "scip"]
Expand Down

0 comments on commit 391c495

Please sign in to comment.