Make the StrEnums proper Enums

This commit is contained in:
Joe Rickerby
2020-12-31 16:35:26 +00:00
parent 5b5078e5e9
commit aa871284fc
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ def get_python_configurations(
# and match the build/skip rules
return [
c for c in python_configurations
if any(c.identifier.endswith(arch) for arch in architectures)
if any(c.identifier.endswith(arch.value) for arch in architectures)
and build_selector(c.identifier)
]