From d95a7dcd836774ecd5dc68d27704bba0e0467f79 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 4 Nov 2021 18:01:25 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- cibuildwheel/docker_container.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cibuildwheel/docker_container.py b/cibuildwheel/docker_container.py index 9c966c6bc..03384a082 100644 --- a/cibuildwheel/docker_container.py +++ b/cibuildwheel/docker_container.py @@ -31,7 +31,12 @@ class DockerContainer: bash_stdout: IO[bytes] def __init__( - self, *, docker_image: str, simulate_32_bit: bool = False, network_host: bool = False, cwd: Optional[PathOrStr] = None + self, + *, + docker_image: str, + simulate_32_bit: bool = False, + network_host: bool = False, + cwd: Optional[PathOrStr] = None, ): if not docker_image: raise ValueError("Must have a non-empty docker image to run.") @@ -55,7 +60,7 @@ def __enter__(self) -> "DockerContainer": f"--name={self.name}", "--interactive", "--volume=/:/host", # ignored on CircleCI - network_args, # mainly for TravisCI PPC64le + network_args, # mainly for TravisCI PPC64le *cwd_args, self.docker_image, *shell_args,