From 0552bed7bc21e2854d67117892d36594816dec2d Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Fri, 21 Jul 2023 21:16:28 -0700 Subject: [PATCH] another typing fix --- ortools/linear_solver/python/model_builder_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ortools/linear_solver/python/model_builder_test.py b/ortools/linear_solver/python/model_builder_test.py index 3cde15b8d00..87080fb5349 100644 --- a/ortools/linear_solver/python/model_builder_test.py +++ b/ortools/linear_solver/python/model_builder_test.py @@ -1735,7 +1735,7 @@ def test_solve_status( ) def test_get_variable_values( 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, @@ -1810,7 +1810,7 @@ def test_get_variable_values( ) def test_get_objective_value( 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,