Skip to content

Commit a1658f3

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/unit/config/test___main__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99

1010

1111
def test_main():
12-
process = Popen([sys.executable, "-m", "virtualenv", "--help"], universal_newlines=True, stdout=PIPE, encoding="utf-8")
12+
process = Popen(
13+
[sys.executable, "-m", "virtualenv", "--help"], universal_newlines=True, stdout=PIPE, encoding="utf-8"
14+
)
1315
out, _ = process.communicate()
1416
assert not process.returncode
1517
assert out

0 commit comments

Comments
 (0)