summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--jsonpatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsonpatch.py b/jsonpatch.py
index 238a6c9..a4bd519 100644
--- a/jsonpatch.py
+++ b/jsonpatch.py
@@ -41,9 +41,9 @@ import json
import sys
try:
- from collections.abc import Mapping, Sequence
+ from collections.abc import Sequence
except ImportError: # Python 3
- from collections import Mapping, Sequence
+ from collections import Sequence
try:
from types import MappingProxyType