| 54 | |
| 55 | |
| 56 | class DummyNode(Node): |
| 57 | def __init__(self, key: MigrationKey, origin: MigrationKey, error_message: str): |
| 58 | super().__init__(key) |
| 59 | self.origin = origin |
| 60 | self.error_message = error_message |
| 61 | |
| 62 | def raise_error(self) -> None: |
| 63 | raise ValueError(self.error_message) |
| 64 | |
| 65 | |
| 66 | class MigrationGraph: |
no outgoing calls
no test coverage detected
searching dependent graphs…