Skip to content

Commit

Permalink
BWOM Bug Fix: Do Not Show PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmundt committed Feb 11, 2025
1 parent 0f0b82b commit c57ea76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/admin/bwom.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def get_random_open_issues(repository, number_to_return):
repo = gh.get_repo(repository)
# Get all open issues
open_issues = repo.get_issues(state='open')
open_issues_list = [issue for issue in open_issues]
open_issues_list = [issue for issue in open_issues if "pull" not in issue.html_url]

# Randomly select the specified number of issues
random_issues = random.sample(
Expand Down

0 comments on commit c57ea76

Please sign in to comment.