We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f30e506 commit 67573ddCopy full SHA for 67573dd
tests/test_helpers.py
@@ -15,11 +15,7 @@ def cli_call(command):
15
"""
16
Makes the operating system process calls to test the CLI properly.
17
18
- proc = subprocess.Popen(
19
- command,
20
- stdout=subprocess.PIPE,
21
- stderr=subprocess.PIPE,
22
- )
+ proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
23
out, err = proc.communicate()
24
return out, err, proc.returncode
25
0 commit comments