(self)
| 177 | self.sqlite_path = sqlite_path |
| 178 | |
| 179 | async def initialize(self): |
| 180 | # check if the SQLite database file exists |
| 181 | if not os.path.exists(self.sqlite_path): |
| 182 | raise FileNotFoundError(f"SQLite database file not found: {self.sqlite_path}") |
| 183 | |
| 184 | async def delete(self): |
| 185 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected