This commit is contained in:
geekan 2023-12-29 01:38:58 +08:00
parent 933cd1f049
commit e52b48ccc5
4 changed files with 16 additions and 16 deletions

View file

@ -131,13 +131,11 @@ class OutputParser:
try:
content = cls.parse_code(text=content)
except Exception:
pass
# 尝试解析list
try:
content = cls.parse_file_list(text=content)
except Exception:
pass
# 尝试解析list
try:
content = cls.parse_file_list(text=content)
except Exception:
pass
parsed_data[block] = content
return parsed_data