Skip to content

Commit 59b95d9

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vdirsyncer/cli/fetchparams.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ def _strategy_command(*command: str, shell: bool = False):
8282
expanded_command = list(map(expand_path, command))
8383

8484
try:
85-
stdout = subprocess.check_output(expanded_command, universal_newlines=True, shell=shell)
85+
stdout = subprocess.check_output(
86+
expanded_command, universal_newlines=True, shell=shell
87+
)
8688
return stdout.strip("\n")
8789
except OSError as e:
8890
cmd = " ".join(expanded_command)

0 commit comments

Comments
 (0)