This commit is contained in:
root 2025-07-10 17:35:59 +08:00
parent 12efdc60ab
commit 6fc4c8ba97
1 changed files with 0 additions and 2 deletions

View File

@ -52,12 +52,10 @@ async fn execute_python_command(_app: tauri::AppHandle, args: &[String]) -> Resu
Ok(process) => {
println!("Successfully started Python process");
child = Some(process);
break;
}
Err(e) => {
last_error = format!("Failed to process: {}", e);
println!("{}", last_error);
continue;
}
}