remove prints

This commit is contained in:
Xi Yan 2025-01-14 16:34:05 -08:00
parent 38c2c9c1dc
commit 3097872fd9

View file

@ -99,7 +99,6 @@ def run_with_pty(command):
def run_command(command):
try:
print("Running command:", command)
result = subprocess.run(command, capture_output=True, text=True, check=True)
print("Script Output\n", result.stdout)
return result.returncode