Skip to content

Commit 67573dd

Browse files
committed
make linter happy
1 parent f30e506 commit 67573dd

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/test_helpers.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@ def cli_call(command):
1515
"""
1616
Makes the operating system process calls to test the CLI properly.
1717
"""
18-
proc = subprocess.Popen(
19-
command,
20-
stdout=subprocess.PIPE,
21-
stderr=subprocess.PIPE,
22-
)
18+
proc = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
2319
out, err = proc.communicate()
2420
return out, err, proc.returncode
2521

0 commit comments

Comments
 (0)