register tools from path

This commit is contained in:
yzlin 2024-03-18 22:00:51 +08:00
parent 0271cd7f77
commit e53a0acc8e
3 changed files with 54 additions and 6 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: