mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-04 02:12:35 +00:00
style(filesystem): move difflib import to top level
This commit is contained in:
parent
7bc77c1b41
commit
e0edb904bd
@ -1,5 +1,6 @@
|
||||
"""File system tools: read, write, edit."""
|
||||
|
||||
import difflib
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
||||
@ -169,8 +170,6 @@ class EditFileTool(Tool):
|
||||
@staticmethod
|
||||
def _not_found_message(old_text: str, content: str, path: str) -> str:
|
||||
"""Build a helpful error when old_text is not found."""
|
||||
import difflib
|
||||
|
||||
lines = content.splitlines(keepends=True)
|
||||
old_lines = old_text.splitlines(keepends=True)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user