We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e886a52 commit 1fa2355Copy full SHA for 1fa2355
process_pr.py
@@ -1336,7 +1336,7 @@ def process_pr(
1336
if cmssw_repo:
1337
# If there is a new package, add also a dummy "new" category.
1338
all_packages = set(itertools.chain.from_iterable(CMSSW_CATEGORIES.values()))
1339
- has_category = packages <= all_packages # packages is-a-subset-of all_packages
+ has_category = packages.issubset(all_packages)
1340
1341
if not has_category:
1342
new_package_message = "\nThe following packages do not have a category, yet:\n\n"
0 commit comments