diff --git a/src/test/test_coordinate_parser.py b/src/test/test_coordinate_parser.py index c0d19ac0..32c40985 100644 --- a/src/test/test_coordinate_parser.py +++ b/src/test/test_coordinate_parser.py @@ -1,3 +1,5 @@ +from typing import Tuple + from ipyaladin import Aladin from ipyaladin.coordinate_parser import ( parse_coordinate_string, @@ -68,7 +70,7 @@ def test_is_coordinate_string(inp: str, expected: bool) -> None: @pytest.mark.parametrize(("inp", "expected"), test_split_coordinate_string_values) -def test_split_coordinate_string(inp: str, expected: tuple[str, str]) -> None: +def test_split_coordinate_string(inp: str, expected: Tuple[str, str]) -> None: """Test the function _split_coordinate_string. Parameters