(self, key: str)
| 311 | self._conn.commit() |
| 312 | |
| 313 | def get_metadata(self, key: str) -> Optional[str]: |
| 314 | row = self._conn.execute("SELECT value FROM metadata WHERE key=?", (key,)).fetchone() |
| 315 | return row["value"] if row else None |
| 316 | |
| 317 | def commit(self) -> None: |
| 318 | self._conn.commit() |
no outgoing calls