| 550 | # The result of update_module_isolated when there is a blocking error. Items |
| 551 | # are similar to NormalUpdate (but there are fewer). |
| 552 | class BlockedUpdate(NamedTuple): |
| 553 | module: str |
| 554 | path: str |
| 555 | remaining: list[tuple[str, str]] |
| 556 | messages: list[str] |
| 557 | |
| 558 | |
| 559 | UpdateResult: _TypeAlias = NormalUpdate | BlockedUpdate |
no outgoing calls
no test coverage detected
searching dependent graphs…