From c024c553b0df3c7f1ea0f2c248b95c407d9ac46c Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 13 Sep 2024 20:52:33 +0200 Subject: [PATCH] fix --- rwx/ps/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rwx/ps/__init__.py b/rwx/ps/__init__.py index 1bb552d..67dd2bc 100644 --- a/rwx/ps/__init__.py +++ b/rwx/ps/__init__.py @@ -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]