mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-06 04:51:23 -07:00
odict: fix import issue
This commit is contained in:
parent
fd9bcf7de1
commit
0ced7d52c0
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ try:
|
|||
from UserDict import DictMixin
|
||||
except ImportError:
|
||||
from collections import UserDict
|
||||
from collections import MutableMapping as DictMixin
|
||||
from collections.abc import MutableMapping as DictMixin
|
||||
|
||||
class OrderedDict(dict, DictMixin):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue