(self, sqlite_path: str)
| 173 | class SQLiteDatabase(Database): |
| 174 | |
| 175 | def __init__(self, sqlite_path: str): |
| 176 | super().__init__(TYPE_SQLITE) |
| 177 | self.sqlite_path = sqlite_path |
| 178 | |
| 179 | async def initialize(self): |
| 180 | # check if the SQLite database file exists |