Skip to content

Commit d8d9a15

Browse files
authored
Update README.MD
1 parent 5d667db commit d8d9a15

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.MD

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ a tool to diff dict list set data output like the npm package [deep_diff](https:
55
# USAGE
66

77
diff dict
8-
```
8+
``` python
99
from deep_diff import diff
1010
diff({'a':1,'c':1},{'b':1,'c':1})
1111
'[{'kind': 'D', 'path': ['a'], 'lhs': 1},
1212
{'kind': 'N', 'path': ['b'], 'rhs': 1}]'
1313
```
1414

1515
Except path
16-
```
16+
``` python
1717
from deep_diff import diff
1818
diff({'a':1,'c':1},{'b':1,'c':1},[['a'],['b']])
1919
''
2020
```
2121

2222
more use can see test.py
2323

24-
``` json
24+
```
2525
[ { kind: 'E',
2626
path: [ 'name' ],
2727
lhs: 'my object',

0 commit comments

Comments
 (0)