Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 969ac58

Browse files
committed
Clean: black.
1 parent 0c9d6c3 commit 969ac58

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

runestone/unittest_base.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ def setUpModule(self):
8282
self.assertFalse(p.returncode)
8383
# Compile the docs. Save the stdout and stderr for examination.
8484
p = subprocess.run(
85-
["runestone", "build", "--all"],
86-
capture_output=True,
87-
text=True,
85+
["runestone", "build", "--all"], capture_output=True, text=True,
8886
)
8987
self.build_stdout_data = p.stdout
9088
self.build_stderr_data = p.stderr
@@ -113,9 +111,7 @@ def setUpModule(self):
113111
os.kill(pid, 0)
114112
else:
115113
lsof_output = subprocess.run(
116-
["lsof", "-i", ":{0}".format(PORT)],
117-
capture_output=True,
118-
text=True,
114+
["lsof", "-i", ":{0}".format(PORT)], capture_output=True, text=True,
119115
).stdout
120116
for process in lsof_output.split("\n")[1:]:
121117
data = [x for x in process.split(" ") if x != ""]

0 commit comments

Comments
 (0)