Skip to content

Commit

Permalink
Minor change to remove duplicates (#1852)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 authored Dec 9, 2024
1 parent 8c1dd70 commit 5df8bd5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions releases/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def get_issues_from_repo(target, latest_release_only=False):
issue_ids.append(re.search(r'\d+-', l).group(0).replace('-',''))
if latest_release_only:
break
issue_ids = list(set(issue_ids))
return issue_ids, release_names

def add_issues_to_release(issue_id: int, zenhub_release_hash: str):
Expand Down

0 comments on commit 5df8bd5

Please sign in to comment.