(d)
| 30 | |
| 31 | |
| 32 | def _flatten(d): |
| 33 | if not d: |
| 34 | return defaultdict(lambda: None) |
| 35 | |
| 36 | if isinstance(d, dict): |
| 37 | return defaultdict(lambda: None, flatten(d)) |
| 38 | |
| 39 | return defaultdict(lambda: "unable to parse") |
| 40 | |
| 41 | |
| 42 | def _diff_dicts(old_dict, new_dict, with_unchanged): |
no test coverage detected