inveniosoftware / inveniosoftware/dictdiffer
Ignore list order
Open
Type: enhancement
- Dominant language
- Python
- Stars
- 849
- Forks
- 99
- PR merge metrics
- No merged PRs in 30d
Description
It will be nice to have `ignore_order` option:
```
from dictdiffer import diff
first = {'a': [1,2]}
second = {'a': [2,1]}
result = diff(first, second, ignore_order=True)
assert list(result) == []
```
Contributor guide
Assessment
This issue has not been assessed yet.