Skip to content

Commit

Permalink
🐛 Fix typing for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Xen0Xys committed Apr 29, 2024
1 parent 7580f39 commit 8fdb468
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test/test_coordinate_parser.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from typing import Tuple

from ipyaladin import Aladin
from ipyaladin.coordinate_parser import (
parse_coordinate_string,
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 8fdb468

Please sign in to comment.