From b9bb6212d8be9b2aca27e183c397076f1cbf0ffc Mon Sep 17 00:00:00 2001 From: Fadhil Luqman Date: Tue, 1 Oct 2024 15:37:04 +0800 Subject: [PATCH] spaces instead of tabs for indentation. spaces 1, tabs 0 --- cli/src/commands/application/instances/connect.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cli/src/commands/application/instances/connect.rs b/cli/src/commands/application/instances/connect.rs index f331fd6e..e8082bc2 100644 --- a/cli/src/commands/application/instances/connect.rs +++ b/cli/src/commands/application/instances/connect.rs @@ -282,13 +282,13 @@ pub async fn handle_connect( ) { (Some(node_name), Some(pod_ip), Some(cookie)) => { eprintln!("To connect to mv-wukong-api-proxy:"); - eprintln!("\t1. start a new Notebook"); - eprintln!("\t2. click on `+Smart`"); - eprintln!("\t3. select `Remote Execution`"); - eprintln!("\t4. follow the instructions that pop up to restart the Notebook"); - eprintln!("\t5. enter these values into the `NODE` and `COOKIE` input boxes:"); - eprintln!("\t\tNODE: 🖥️: {}@{}", node_name.cyan(), pod_ip.cyan()); - eprintln!("\t\tCOOKIE: 🍪: {}", cookie.yellow()); + eprintln!(" 1. start a new Notebook"); + eprintln!(" 2. click on `+Smart`"); + eprintln!(" 3. select `Remote Execution`"); + eprintln!(" 4. follow the instructions that pop up to restart the Notebook"); + eprintln!(" 5. enter these values into the `NODE` and `COOKIE` input boxes:"); + eprintln!(" NODE: 🖥️: {}@{}", node_name.cyan(), pod_ip.cyan()); + eprintln!(" COOKIE: 🍪: {}", cookie.yellow()); eprintln!(); } (None, ..) => {