(variables, indexes)
| 389 | grouped[name].append((variable, index)) |
| 390 | |
| 391 | def append_all(variables, indexes): |
| 392 | for name, variable in variables.items(): |
| 393 | append(name, variable, indexes.get(name)) |
| 394 | |
| 395 | for mapping in list_of_mappings: |
| 396 | if isinstance(mapping, Coordinates | Dataset): |
no test coverage detected
searching dependent graphs…