From eb745596e91e206ee91fd670292b1ae4959e6724 Mon Sep 17 00:00:00 2001 From: Dmitrii Krosh Date: Tue, 12 May 2026 00:23:23 +0300 Subject: [PATCH] format code.. --- src/nexus_sync/client/execute.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/nexus_sync/client/execute.py b/src/nexus_sync/client/execute.py index ae21245..2862588 100644 --- a/src/nexus_sync/client/execute.py +++ b/src/nexus_sync/client/execute.py @@ -19,7 +19,5 @@ def _parse_command(command: str) -> list[str]: def _execute(command: str, stdin: Optional[str] = None) -> subprocess.CompletedProcess: parsed_command = _parse_command(command) - result = subprocess.run( - parsed_command, input=stdin, text=True, capture_output=True, shell=True - ) + result = subprocess.run(parsed_command, input=stdin, text=True, capture_output=True, shell=True) return result