fix
This commit is contained in:
parent
07699b08eb
commit
c024c553b0
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ def run(*items: str | tuple[str]) -> subprocess.CompletedProcess:
|
|||
|
||||
def run_line(*items: str | tuple[str], charset: str = txt.CHARSET) -> str:
|
||||
"""Run and return output line."""
|
||||
lines = run_lines(get_tuples_args(*items), charset=charset)
|
||||
lines = run_lines(*items, charset=charset)
|
||||
return lines[0]
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue