Skip to content

Commit e669c79

Browse files
author
David Rickett
committed
update typehints
1 parent 6dd8074 commit e669c79

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/models_test.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import pytest
2-
from datetime import datetime
3-
from contextlib import nullcontext as does_not_raise
4-
from typing import List, Optional, Dict, Tuple, Any
2+
from typing import List, Dict, Tuple, Set
53

64
from src.easyhla.easyhla import EasyHLA, DATE_FORMAT
75
from src.easyhla.models import (
@@ -134,7 +132,7 @@ def test_alleles(
134132
exp_result_clean: List[str],
135133
exp_homozygous: bool,
136134
exp_ambiguous: bool,
137-
exp_ambiguous_collection: set[str],
135+
exp_ambiguous_collection: Set[str],
138136
exp_collection: List[Tuple[List[str], List[str]]],
139137
):
140138
result = Alleles(alleles=alleles)

0 commit comments

Comments
 (0)