fix(notebook): remove unused imports

Clean up unused imports in notebook_edit so the Ruff F401 check passes cleanly.

Made-with: Cursor
This commit is contained in:
Xubin Ren 2026-04-10 16:02:00 +00:00
parent 651aeae656
commit 696b64b5a6

View File

@ -4,10 +4,9 @@ from __future__ import annotations
import json
import uuid
from pathlib import Path
from typing import Any
from nanobot.agent.tools.base import Tool, tool_parameters
from nanobot.agent.tools.base import tool_parameters
from nanobot.agent.tools.schema import IntegerSchema, StringSchema, tool_parameters_schema
from nanobot.agent.tools.filesystem import _FsTool