Skip to content

Commit fad4b7d

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e48b0b6 commit fad4b7d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

cibuildwheel/frontend.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import os
21
import dataclasses
2+
import os
33
import shlex
44
import typing
55
from collections.abc import Sequence
@@ -43,9 +43,7 @@ def _get_verbosity_flags(level: int, frontend: BuildFrontendName) -> list[str]:
4343
# We can use the "PYODIDE" env var to detect if we're running in that context.
4444
if os.environ.get("PYODIDE") == "1":
4545
if level != 0:
46-
log.warning(
47-
f"build_verbosity {level} is not supported for Pyodide builds. Ignoring."
48-
)
46+
log.warning(f"build_verbosity {level} is not supported for Pyodide builds. Ignoring.")
4947
return []
5048

5149
if level < 0:

0 commit comments

Comments
 (0)