(name, variable, index)
| 386 | grouped: dict[Hashable, list[MergeElement]] = defaultdict(list) |
| 387 | |
| 388 | def append(name, variable, index): |
| 389 | grouped[name].append((variable, index)) |
| 390 | |
| 391 | def append_all(variables, indexes): |
| 392 | for name, variable in variables.items(): |
no outgoing calls
no test coverage detected
searching dependent graphs…