diff --git a/flask_app/general/投标人须知正文提取指定内容.py b/flask_app/general/投标人须知正文提取指定内容.py index cee48ad..67292bb 100644 --- a/flask_app/general/投标人须知正文提取指定内容.py +++ b/flask_app/general/投标人须知正文提取指定内容.py @@ -232,7 +232,7 @@ def extract_sections(data, target_values): # Check if the sub_key starts with the section_key_prefix and is not the section_key itself if sub_key.startswith(section_key_prefix) and sub_key != section_key_prefix: sub_value = data[sub_key] - subitems.append(f"{sub_key} {sub_value}") + subitems.append(f"{sub_key} {sub_value}") # Check for "定标" and "中标" to merge them if section_name in ["定标", "中标"]: