Skip to content

Commit

Permalink
FIx tests on older python (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm authored Oct 26, 2024
1 parent 70dc1d6 commit 3c47458
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 3c47458

Please sign in to comment.