Merge branch 'di_fixes' into add_tool_from_path

This commit is contained in:
yzlin 2024-03-25 16:15:08 +08:00
commit e7423763bc
11 changed files with 194 additions and 33 deletions

View file

@ -3,7 +3,7 @@ from typing import Tuple
def remove_spaces(text):
return re.sub(r"\s+", " ", text).strip()
return re.sub(r"\s+", " ", text).strip() if text else ""
class DocstringParser: