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 e5f3c79 commit 47647e6Copy full SHA for 47647e6
variantlib/resolver/filtering.py
@@ -213,9 +213,7 @@ def _should_include(vdesc: VariantDescription) -> bool:
213
vprops_dict[VariantFeature(vprop.namespace, vprop.feature)].add(vprop.value)
214
215
for vfeat_tuple, property_values in vprops_dict.items():
216
- if (
217
- allowed_props := allowed_props_dict.get(vfeat_tuple)
218
- ) is None or not allowed_props:
+ if not (allowed_props := allowed_props_dict.get(vfeat_tuple)):
219
# If there are no allowed properties for this feature, we reject
220
# the variant.
221
logger.info(
0 commit comments