Skip to content

Commit

Permalink
fix: fgpyo.fasta.sequence_dictionary incorrect StrEnum import (#175)
Browse files Browse the repository at this point in the history
Was getting:
    ModuleNotFoundError: No module named 'strenum'
  • Loading branch information
nh13 authored Aug 8, 2024
1 parent 84c8ec4 commit 29b20c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fgpyo/fasta/sequence_dictionary.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
from typing import Union
from typing import overload

if sys.version_info[0] == 3 and sys.version_info[0] < 11:
if sys.version_info[0] == 3 and sys.version_info[1] < 11:
from strenum import StrEnum
else:
from enum import StrEnum
Expand Down

0 comments on commit 29b20c9

Please sign in to comment.