Skip to content

Commit

Permalink
Fixed issue okfn#195, Compatibility with Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
FatemehAhmadi94 committed Oct 22, 2022
1 parent 3366a08 commit 9a6de1c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion messytables/core.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from messytables.util import OrderedDict
from collections import Mapping
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping
from messytables.error import TableError, NoSuchPropertyError
import io
from messytables.compat23 import *
Expand Down

0 comments on commit 9a6de1c

Please sign in to comment.