Skip to content

Commit

Permalink
Import of Mutable Mapping for Python 2 and 3 at the same time.
Browse files Browse the repository at this point in the history
  • Loading branch information
codecop committed Mar 27, 2020
1 parent e70ce99 commit a692023
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/wfuzz/externals/moduleman/registrant.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
from .modulefilter import Filter
from collections import defaultdict
from collections.abc import MutableMapping
try:
from collections.abc import MutableMapping
except ImportError:
from collections import MutableMapping
from threading import Lock


Expand Down

0 comments on commit a692023

Please sign in to comment.