Skip to content

Commit

Permalink
another typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Jul 22, 2023
1 parent 1135c58 commit 44cff78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ortools/linear_solver/python/model_builder_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""Tests for ModelBuilder."""

import math
from typing import Any, Callable, Mapping, Union
from typing import Any, Dict, Callable, Mapping, Union

from absl.testing import absltest
from absl.testing import parameterized
Expand Down Expand Up @@ -1669,7 +1669,7 @@ def _create_model(
)
def test_solve_status(
self,
solver: dict[str, Union[str, Mapping[str, Any], bool]],
solver: Dict[str, Union[str, Mapping[str, Any], bool]],
variable_indices: pd.Index,
variable_bound: float,
solve_status: mb.SolveStatus,
Expand Down

0 comments on commit 44cff78

Please sign in to comment.