Skip to content

Commit

Permalink
--config format-style='single'
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Oct 23, 2024
1 parent 2c3cce8 commit 65d867c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions supported_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand All @@ -39,5 +39,5 @@ def main() -> None:
print(fname) # noqa: T201


if __name__ == "__main__":
if __name__ == '__main__':
main()

0 comments on commit 65d867c

Please sign in to comment.