(first, second)
| 67 | |
| 68 | |
| 69 | def compatible_mappings(first, second): |
| 70 | return { |
| 71 | key: is_compatible(unit1, unit2) |
| 72 | for key, (unit1, unit2) in zip_mappings(first, second) |
| 73 | } |
| 74 | |
| 75 | |
| 76 | def merge_mappings(base, *mappings): |
no test coverage detected
searching dependent graphs…