diff --git a/tests/test_cli.py b/tests/test_cli.py index d100985..a49839b 100755 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -145,10 +145,10 @@ def run(cmd, cwd=None): if VERBOSE: print(">>> ", args_as_string(cmd)) import subprocess - kwargs = dict( - stderr=subprocess.PIPE, - stdout=subprocess.PIPE, - ) + kwargs = { + "stderr": subprocess.PIPE, + "stdout": subprocess.PIPE, + } if cwd is not None: kwargs["cwd"] = cwd