(self)
| 65 | |
| 66 | class MigrationGraph: |
| 67 | def __init__(self) -> None: |
| 68 | self.node_map: dict[MigrationKey, Node] = {} |
| 69 | self.nodes: dict[MigrationKey, Migration | None] = {} |
| 70 | |
| 71 | def add_node(self, key: MigrationKey, migration: Migration) -> None: |
| 72 | if key in self.node_map: |
nothing calls this directly
no outgoing calls
no test coverage detected