Skip to content

Commit

Permalink
FIX - fixes MutableMapping import
Browse files Browse the repository at this point in the history
Adapted to change in collections, where MutableMapping moved
to collections.abc
  • Loading branch information
achim1 committed Jul 22, 2022
1 parent 353d93d commit d24731b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashi/odict.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


from collections import MutableMapping
from collections.abc import MutableMapping

class OrderedDict(MutableMapping):
"""
Expand Down

0 comments on commit d24731b

Please sign in to comment.