From 289b4de52d9b02653bd32a9ab7d7a05381cf774f Mon Sep 17 00:00:00 2001 From: Anish Sarkar <104695310+AnishSarkar22@users.noreply.github.com> Date: Sun, 23 Nov 2025 16:47:09 +0530 Subject: [PATCH] refactor: comment out unused blocknote converter imports in editor_routes.py --- surfsense_backend/app/routes/editor_routes.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/surfsense_backend/app/routes/editor_routes.py b/surfsense_backend/app/routes/editor_routes.py index f4c4ca38e..a34c80db0 100644 --- a/surfsense_backend/app/routes/editor_routes.py +++ b/surfsense_backend/app/routes/editor_routes.py @@ -11,10 +11,11 @@ from sqlalchemy.ext.asyncio import AsyncSession from app.db import Document, SearchSpace, User, get_async_session from app.users import current_active_user -from app.utils.blocknote_converter import ( - convert_blocknote_to_markdown, - convert_markdown_to_blocknote, -) + +# from app.utils.blocknote_converter import ( +# convert_blocknote_to_markdown, +# convert_markdown_to_blocknote, +# ) router = APIRouter()