Skip to content

Commit 35365c6

Browse files
Manually remove more .format() calls
1 parent 578d630 commit 35365c6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setuptools/command/bdist_wheel.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,9 +184,7 @@ class bdist_wheel(Command):
184184
(
185185
"compression=",
186186
None,
187-
"zipfile compression (one of: {}) [default: 'deflated']".format(
188-
", ".join(supported_compressions)
189-
),
187+
f"zipfile compression (one of: {', '.join(supported_compressions)}) [default: 'deflated']",
190188
),
191189
(
192190
"python-tag=",

0 commit comments

Comments
 (0)