Skip to content

Commit

Permalink
Manually remove more .format() calls
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Dec 31, 2024
1 parent 578d630 commit 35365c6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setuptools/command/bdist_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,7 @@ class bdist_wheel(Command):
(
"compression=",
None,
"zipfile compression (one of: {}) [default: 'deflated']".format(
", ".join(supported_compressions)
),
f"zipfile compression (one of: {', '.join(supported_compressions)}) [default: 'deflated']",
),
(
"python-tag=",
Expand Down

0 comments on commit 35365c6

Please sign in to comment.