From 8a1fd95b1ba545bc1583917c3745e7edcb40d17c Mon Sep 17 00:00:00 2001 From: Igor Lins e Silva <4753812+igorls@users.noreply.github.com> Date: Sun, 26 Apr 2026 18:23:31 -0300 Subject: [PATCH] style: drop unused pathlib.Path imports in marker tests --- tests/test_backends.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_backends.py b/tests/test_backends.py index 22c6e2e..40237ed 100644 --- a/tests/test_backends.py +++ b/tests/test_backends.py @@ -383,7 +383,6 @@ def test_fix_blob_seq_ids_noop_without_database(tmp_path): def test_fix_blob_seq_ids_writes_marker_after_blob_path(tmp_path): """The .blob_seq_ids_migrated marker is written after a successful BLOB → INTEGER conversion.""" - from pathlib import Path from mempalace.backends.chroma import _BLOB_FIX_MARKER db_path = tmp_path / "chroma.sqlite3" @@ -409,7 +408,6 @@ def test_fix_blob_seq_ids_writes_marker_when_already_integer(tmp_path): marker on first run too — next ``_fix_blob_seq_ids`` call short-circuits before touching the sqlite3 file. """ - from pathlib import Path from mempalace.backends.chroma import _BLOB_FIX_MARKER db_path = tmp_path / "chroma.sqlite3" @@ -435,7 +433,6 @@ def test_fix_blob_seq_ids_skips_sqlite_when_marker_present(tmp_path): PersistentClient call (#1090). Once a palace has been migrated, we never want to open it again, even read-only. """ - from pathlib import Path from unittest.mock import patch from mempalace.backends.chroma import _BLOB_FIX_MARKER