Skip to content

Commit b5706da

Browse files
linter
1 parent f7aaf1b commit b5706da

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sklbench/utils/common.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,11 @@ def read_output_from_command(command: str) -> Tuple[int, str, str]:
6666
stderr=sp.PIPE,
6767
encoding="utf-8",
6868
)
69-
return res.returncode, res.stdout.strip(), res.stderr.strip()
69+
return (
70+
res.returncode,
71+
res.stdout.strip(),
72+
res.stderr.strip(),
73+
)
7074

7175

7276
def hash_from_json_repr(x: JsonTypesUnion, hash_limit: int = 5) -> str:

0 commit comments

Comments
 (0)