Skip to content

Commit

Permalink
FIx tests on older python
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Oct 26, 2024
1 parent 06d3a75 commit 7bf8ef7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion fints/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
import zlib
from contextlib import contextmanager
from datetime import datetime
from enum import Enum, EnumType
try:
from enum import Enum, EnumType
except ImportError:
from enum import Enum, EnumMeta as EnumType

import mt940

Expand Down

0 comments on commit 7bf8ef7

Please sign in to comment.