ruff/format
This commit is contained in:
parent
e4178bda5d
commit
0dd0c5fd8f
1 changed files with 3 additions and 1 deletions
|
@ -72,7 +72,9 @@ def run_lines(
|
||||||
:rtype: list[str]
|
:rtype: list[str]
|
||||||
"""
|
"""
|
||||||
process = subprocess.run(
|
process = subprocess.run(
|
||||||
get_tuples_args(*items), capture_output=True, check=True
|
get_tuples_args(*items),
|
||||||
|
capture_output=True,
|
||||||
|
check=True,
|
||||||
)
|
)
|
||||||
string = process.stdout.decode(charset)
|
string = process.stdout.decode(charset)
|
||||||
return string.rstrip().splitlines()
|
return string.rstrip().splitlines()
|
||||||
|
|
Loading…
Reference in a new issue