MCPcopy Index your code
hub / github.com/tirth8205/code-review-graph / get_metadata

Method get_metadata

code_review_graph/graph.py:313–315  ·  view source on GitHub ↗
(self, key: str)

Source from the content-addressed store, hash-verified

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()

Callers 8

mainFunction · 0.95
get_statsMethod · 0.95
test_metadataMethod · 0.80

Calls

no outgoing calls