From edda5b98cb837eb16be2b33d9765c9532a656c10 Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Fri, 3 Apr 2026 17:38:29 +0530 Subject: [PATCH] chore: ran linting --- .../indexing_pipeline/test_local_folder_pipeline.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/surfsense_backend/tests/integration/indexing_pipeline/test_local_folder_pipeline.py b/surfsense_backend/tests/integration/indexing_pipeline/test_local_folder_pipeline.py index 4c900bf51..b94762ee6 100644 --- a/surfsense_backend/tests/integration/indexing_pipeline/test_local_folder_pipeline.py +++ b/surfsense_backend/tests/integration/indexing_pipeline/test_local_folder_pipeline.py @@ -860,7 +860,9 @@ class TestDirectConvert: """DC2: TSV file is indexed as a markdown table.""" from app.tasks.connector_indexers.local_folder_indexer import index_local_folder - (tmp_path / "data.tsv").write_text("name\tage\tcity\nAlice\t30\tNYC\nBob\t25\tLA\n") + (tmp_path / "data.tsv").write_text( + "name\tage\tcity\nAlice\t30\tNYC\nBob\t25\tLA\n" + ) count, _skipped, _root_folder_id, err = await index_local_folder( session=db_session, @@ -896,9 +898,7 @@ class TestDirectConvert: """DC3: HTML file is indexed as clean markdown, not raw HTML.""" from app.tasks.connector_indexers.local_folder_indexer import index_local_folder - (tmp_path / "page.html").write_text( - "

Title

Hello world

" - ) + (tmp_path / "page.html").write_text("

Title

Hello world

") count, _skipped, _root_folder_id, err = await index_local_folder( session=db_session,