Skip to content

Commit

Permalink
Fix set union (publicsuffix#1986)
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-friedberger authored May 27, 2024
1 parent f781a9a commit a35754a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pr_checker/check_dns.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def main(current_filename, pull_request_filename, pr_id):
"""
added, removed = psl_diff(current_filename, pull_request_filename)

if not all(map(lambda rule: check_dns_pr(rule, pr_id), added + removed)):
if not all(map(lambda rule: check_dns_pr(rule, pr_id), added.union(removed))):
exit(1)


Expand Down

0 comments on commit a35754a

Please sign in to comment.