| 541 | # tuples (non-empty if the original changed module imported other new |
| 542 | # modules) |
| 543 | class NormalUpdate(NamedTuple): |
| 544 | module: str |
| 545 | path: str |
| 546 | remaining: list[tuple[str, str]] |
| 547 | tree: MypyFile | None |
| 548 | |
| 549 | |
| 550 | # The result of update_module_isolated when there is a blocking error. Items |
no outgoing calls
no test coverage detected
searching dependent graphs…