Skip to content

Commit

Permalink
Merge 8bf8995 into 9791f83
Browse files Browse the repository at this point in the history
  • Loading branch information
rsheftel committed Oct 30, 2019
2 parents 9791f83 + 8bf8995 commit 823f79a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pook/headers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import sys
from collections import Mapping, MutableMapping
try:
from collections.abc import Mapping, MutableMapping
except ImportError:
from collections import Mapping, MutableMapping

PY3 = sys.version_info >= (3, 0)

Expand Down

0 comments on commit 823f79a

Please sign in to comment.