Skip to content

Commit eb3ad58

Browse files
committed
Fix linting
1 parent 3aa2d57 commit eb3ad58

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setuptools/command/bdist_wheel.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,9 +368,9 @@ def get_tag(self) -> tuple[str, str, str]:
368368
supported_tags = [
369369
(t.interpreter, t.abi, plat_name) for t in tags.sys_tags()
370370
]
371-
assert (
372-
tag in supported_tags
373-
), f"would build wheel with unsupported tag {tag}"
371+
assert tag in supported_tags, (
372+
f"would build wheel with unsupported tag {tag}"
373+
)
374374
return tag
375375

376376
def run(self):

0 commit comments

Comments
 (0)