diff --git a/supported_wheels.py b/supported_wheels.py index 0cb5a9dd..8d2469f3 100755 --- a/supported_wheels.py +++ b/supported_wheels.py @@ -24,9 +24,9 @@ def tags_for(fname: str) -> Iterator[tuple[str, str, str]]: """Copied from WheelFile code.""" # noqa: D401 parsed_filename = wheel_matcher(basename(fname)) # noqa: PTH119 tags = parsed_filename.groupdict() - for pyver in tags["pyver"].split("."): - for abi in tags["abi"].split("."): - for plat in tags["plat"].split("."): + for pyver in tags['pyver'].split('.'): + for abi in tags['abi'].split('.'): + for plat in tags['plat'].split('.'): yield (pyver, abi, plat) @@ -39,5 +39,5 @@ def main() -> None: print(fname) # noqa: T201 -if __name__ == "__main__": +if __name__ == '__main__': main()