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