Skip to content

Commit 1fa2355

Browse files
committed
Style fix
1 parent e886a52 commit 1fa2355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

process_pr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1336,7 +1336,7 @@ def process_pr(
13361336
if cmssw_repo:
13371337
# If there is a new package, add also a dummy "new" category.
13381338
all_packages = set(itertools.chain.from_iterable(CMSSW_CATEGORIES.values()))
1339-
has_category = packages <= all_packages # packages is-a-subset-of all_packages
1339+
has_category = packages.issubset(all_packages)
13401340

13411341
if not has_category:
13421342
new_package_message = "\nThe following packages do not have a category, yet:\n\n"

0 commit comments

Comments
 (0)