From ce3d8222ffa4bec888457665b11089258e87fb23 Mon Sep 17 00:00:00 2001 From: hammadb Date: Mon, 23 Oct 2023 10:53:00 -0700 Subject: [PATCH] cleanup --- chromadb/db/impl/sqlite.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/chromadb/db/impl/sqlite.py b/chromadb/db/impl/sqlite.py index 10036d3c239..da4a5ab3ebd 100644 --- a/chromadb/db/impl/sqlite.py +++ b/chromadb/db/impl/sqlite.py @@ -138,9 +138,6 @@ def reset_state(self) -> None: for row in cur.fetchall(): cur.execute(f"DROP TABLE IF EXISTS {row[0]}") self._conn_pool.close() - # TODO: clean this up ---- I don't think its correct or needed - # if self._is_persistent: - # delete_file(self._db_file) self.start() super().reset_state()