We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1268e09 commit 9310d48Copy full SHA for 9310d48
1 file changed
tests.py
@@ -953,8 +953,10 @@ def apply(self, obj):
953
954
class JsonPatch(jsonpatch.JsonPatch):
955
operations = MappingProxyType(
956
- identity=IdentityOperation,
957
- **jsonpatch.JsonPatch.operations
+ dict(
+ identity=IdentityOperation,
958
+ **jsonpatch.JsonPatch.operations
959
+ )
960
)
961
962
patch = JsonPatch([{'op': 'identity', 'path': '/'}])
0 commit comments