nox formatting

This commit is contained in:
Mido 2023-08-26 20:54:45 -04:00
parent 7d23a0861e
commit 64fe1813f2
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ def validate_platform_options(platform_options: List[str]) -> None:
major, minor, arch = (
int(match.group("major")),
int(match.group("minor")),
match.group("arch")
match.group("arch"),
)
return (major, minor) >= (10, 0) or arch in {"arm64", "intel", "x86_64"}
@ -148,7 +148,7 @@ def validate_platform_options(platform_options: List[str]) -> None:
"ppc64le",
"s390x",
"x86_64",
}
}
return False
def is_glibc_linux_arch(suffix: str) -> bool: