Set the ``signature`` column for a single node.
(
self, node_id: int, signature: str,
)
| 1016 | ).fetchall() |
| 1017 | |
| 1018 | def update_node_signature( |
| 1019 | self, node_id: int, signature: str, |
| 1020 | ) -> None: |
| 1021 | """Set the ``signature`` column for a single node.""" |
| 1022 | self._conn.execute( |
| 1023 | "UPDATE nodes SET signature = ? WHERE id = ?", |
| 1024 | (signature, node_id), |
| 1025 | ) |
| 1026 | |
| 1027 | def get_all_community_ids(self) -> dict[str, int | None]: |
| 1028 | """Return a mapping of *all* qualified names to their community_id. |
no outgoing calls
no test coverage detected