format code..

This commit is contained in:
2026-05-12 00:23:23 +03:00
parent fc13c5ba1f
commit eb745596e9
+1 -3
View File
@@ -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