mirror of
https://github.com/qodo-ai/pr-agent.git
synced 2025-07-02 03:40:38 +08:00
docs and fixes
This commit is contained in:
@ -938,7 +938,10 @@ def is_value_no(value):
|
||||
return False
|
||||
|
||||
|
||||
def process_description(description_full: str):
|
||||
def process_description(description_full: str) -> Tuple[str, List]:
|
||||
if not description_full:
|
||||
return "", []
|
||||
|
||||
split_str = "### **Changes walkthrough** 📝"
|
||||
description_split = description_full.split(split_str)
|
||||
base_description_str = description_split[0]
|
||||
|
Reference in New Issue
Block a user