From 4b8080e8bef3bc09b5ed1d7a90c45cc47eb035db Mon Sep 17 00:00:00 2001 From: Mohammad Twin Date: Wed, 13 Mar 2024 17:23:50 +0400 Subject: [PATCH] fix: lint issue fixed --- dags/github.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dags/github.py b/dags/github.py index 31cceb8f..2d1bca37 100644 --- a/dags/github.py +++ b/dags/github.py @@ -193,7 +193,9 @@ def extract_pull_request_linked_issues(data): new_prs = [] for pr in prs: pr_number = pr["number"] - linked_issues = extract_linked_issues_from_pr(owner=owner, repo=repo_name, pull_number=pr_number) + linked_issues = extract_linked_issues_from_pr( + owner=owner, repo=repo_name, pull_number=pr_number + ) new_prs.append({**pr, "linked_issues": linked_issues}) new_data = {**data, "prs": new_prs}