rm useless deepcopy

This commit is contained in:
better629 2023-12-04 21:56:43 +08:00
parent f1e01c5ba8
commit fb69c107fe

View file

@ -82,8 +82,7 @@ def repair_required_key_pair_missing(output: str, req_key: str = "[/CONTENT]") -
if left_key not in output:
output = left_key + "\n" + output
if right_key not in output:
def judge_potential_json(routput: str, left_key: str) -> Union[str]:
routput = copy.deepcopy(routput)
def judge_potential_json(routput: str, left_key: str) -> Union[str, None]:
ridx = routput.rfind(left_key)
if ridx < 0:
return None