Skip to content

Commit a381664

Browse files
committed
fix bug
1 parent 9c70139 commit a381664

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fgpyo/sam/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@
161161
from typing import Iterator
162162
from typing import List
163163
from typing import Optional
164+
from typing import Set
164165
from typing import Tuple
165-
from typing import set
166166
from typing import Union
167167
from typing import cast
168168

@@ -193,7 +193,7 @@
193193
SAM_UMI_DELIMITER: str = "-"
194194
"""Multiple UMI delimiter, which SAM specification recommends should be a hyphen"""
195195

196-
VALID_UMI_CHARACTERS: set[str] = set("ACGTN")
196+
VALID_UMI_CHARACTERS: Set[str] = set("ACGTN")
197197
"""Illumina's restricted UMI characters."""
198198

199199
ILLUMINA_UMI_DELIMITER: str = "+"

0 commit comments

Comments
 (0)