Skip to content

Commit

Permalink
fix: py3.8 compat type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Feb 2, 2023
1 parent 9128fd2 commit a28e6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fasta_checksum_utils/_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
from .algorithms import ChecksumAlgorithm


async def checksum_file(file: Path, algorithms: Tuple[ChecksumAlgorithm, ...]) -> tuple[str, ...]:
async def checksum_file(file: Path, algorithms: Tuple[ChecksumAlgorithm, ...]) -> Tuple[str, ...]:
return tuple(await asyncio.gather(*(a.checksum_file(file) for a in algorithms)))

0 comments on commit a28e6c9

Please sign in to comment.