Update pr_agent/tools/ticket_pr_compliance_check.py

Co-authored-by: qodo-merge-pro-for-open-source[bot] <189517486+qodo-merge-pro-for-open-source[bot]@users.noreply.github.com>
This commit is contained in:
Wonchae Lee
2025-02-20 12:53:26 -05:00
committed by GitHub
parent 86647810e0
commit 183d2965d0

View File

@ -90,7 +90,7 @@ async def extract_tickets(git_provider):
# Extract sub-issues # Extract sub-issues
sub_issues_content = [] sub_issues_content = []
try: try:
sub_issues = provider.fetch_sub_issues(ticket) sub_issues = git_provider.fetch_sub_issues(ticket)
for sub_issue_url in sub_issues: for sub_issue_url in sub_issues:
try: try:
sub_repo, sub_issue_number = git_provider._parse_issue_url(sub_issue_url) sub_repo, sub_issue_number = git_provider._parse_issue_url(sub_issue_url)