[general] black code some more

This commit is contained in:
tobi-wan-kenobi 2020-05-14 20:36:01 +02:00
parent 526560ea54
commit bc382e67d3
3 changed files with 12 additions and 2 deletions

View file

@ -4,7 +4,14 @@ import subprocess
import logging
def execute(cmd, wait=True, ignore_errors=False, include_stderr=False, env=None, return_exitcode=False):
def execute(
cmd,
wait=True,
ignore_errors=False,
include_stderr=False,
env=None,
return_exitcode=False,
):
"""Executes a commandline utility and returns its output
:param cmd: the command (as string) to execute, returns the program's output