feat: merge gitlab/di_mgx

This commit is contained in:
莘权 马 2024-03-30 20:42:15 +08:00
commit 09f75cbaf2
14 changed files with 349 additions and 32 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: