summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVu-Hoang Phan <vu-hoang.phan@ubisoft.com>2021-04-06 13:54:00 +0200
committerVu-Hoang Phan <vu-hoang.phan@ubisoft.com>2021-04-06 13:54:00 +0200
commit46eef55d5170c08dd9513c86703b365f3d51db3c (patch)
treee14fd9a915d0c4ac64a213ff5f0ad0161779e848
parentdb194f820dee88e1a66a811a7a8653cce6965bc3 (diff)
downloadpython-json-patch-46eef55d5170c08dd9513c86703b365f3d51db3c.tar.gz
remove unused import
-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