From 59b95d999978232d0853336199c05705fe135594 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 9 Dec 2021 16:18:09 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- vdirsyncer/cli/fetchparams.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vdirsyncer/cli/fetchparams.py b/vdirsyncer/cli/fetchparams.py index fc0ffe9..2ef6c4f 100644 --- a/vdirsyncer/cli/fetchparams.py +++ b/vdirsyncer/cli/fetchparams.py @@ -82,7 +82,9 @@ def _strategy_command(*command: str, shell: bool = False): expanded_command = list(map(expand_path, command)) try: - stdout = subprocess.check_output(expanded_command, universal_newlines=True, shell=shell) + stdout = subprocess.check_output( + expanded_command, universal_newlines=True, shell=shell + ) return stdout.strip("\n") except OSError as e: cmd = " ".join(expanded_command)