Merge branch 'main' into feat_basemodel

This commit is contained in:
better629 2023-12-22 22:33:06 +08:00 committed by GitHub
commit 19d33110bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
31 changed files with 453 additions and 114 deletions

View file

@ -196,6 +196,8 @@ def repair_invalid_json(output: str, error: str) -> str:
new_line = f'"{line}'
elif '",' in line:
new_line = line[:-2] + "',"
else:
new_line = line
arr[line_no] = new_line
output = "\n".join(arr)