Skip to content

Commit

Permalink
fix: lint issue fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
scientiststwin committed Mar 13, 2024
1 parent c599bf9 commit 4b8080e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dags/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit 4b8080e

Please sign in to comment.