diff --git a/src/dumdum/client/store.py b/src/dumdum/client/store.py index 6fbd1fc..9f6ad25 100644 --- a/src/dumdum/client/store.py +++ b/src/dumdum/client/store.py @@ -2,13 +2,13 @@ from typing import Any, Iterator, Self, TypeVar from dumdum.appdirs import APP_DIRS -from dumdum.db import SQLiteConnection, run_migrations +from dumdum.db import Connection, SQLiteConnection, run_migrations T = TypeVar("T") class ClientStore: - def __init__(self, conn: SQLiteConnection) -> None: + def __init__(self, conn: Connection) -> None: self._conn = conn @contextlib.contextmanager