mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-20 05:13:34 -07:00
commit
a6838fdc42
1 changed files with 4 additions and 1 deletions
|
@ -3,7 +3,10 @@ try:
|
|||
from UserDict import DictMixin
|
||||
except ImportError:
|
||||
from collections import UserDict
|
||||
from collections import MutableMapping as DictMixin
|
||||
try:
|
||||
from collections import MutableMapping as DictMixin
|
||||
except ImportError:
|
||||
from collections.abc import MutableMapping as DictMixin
|
||||
|
||||
class OrderedDict(dict, DictMixin):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue