axio-context-sqlite 0.5.1__tar.gz → 0.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/PKG-INFO +1 -1
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/pyproject.toml +1 -1
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/src/axio_context_sqlite/store.py +3 -0
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/.gitignore +0 -0
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/README.md +0 -0
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/src/axio_context_sqlite/__init__.py +0 -0
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/src/axio_context_sqlite/py.typed +0 -0
- {axio_context_sqlite-0.5.1 → axio_context_sqlite-0.6.1}/tests/test_store.py +0 -0
|
@@ -185,6 +185,9 @@ class SQLiteContextStore(ContextStore):
|
|
|
185
185
|
return 0, 0
|
|
186
186
|
return int(row[0]), int(row[1])
|
|
187
187
|
|
|
188
|
+
async def close(self) -> None:
|
|
189
|
+
"""No-op: the caller owns the connection."""
|
|
190
|
+
|
|
188
191
|
async def list_sessions(self) -> list[SessionInfo]:
|
|
189
192
|
"""List all sessions for a project, newest first."""
|
|
190
193
|
async with self._conn.execute(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|