Skip to content

Commit f855939

Browse files
committed
fmt
1 parent 31a6edb commit f855939

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

command/src/main.rs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
use cliclack::{confirm, input, intro, multiselect, select, spinner, log};
1+
use cliclack::{confirm, input, intro, log, multiselect, select, spinner};
22
use colored::Colorize;
33
use local_ip_address::local_ip;
4-
use std::{collections::HashMap, io::Error, path::{Path, PathBuf}};
4+
use std::{
5+
collections::HashMap,
6+
io::Error,
7+
path::{Path, PathBuf},
8+
};
59

610
const BANNER: &str = r"
711
|\_ _ _ _
@@ -170,7 +174,7 @@ fn setup() -> std::io::Result<()> {
170174
services
171175
.iter()
172176
.filter_map(|service| service.compose_profile.clone())
173-
.flatten()
177+
.flatten()
174178
.map(std::string::ToString::to_string)
175179
.collect(),
176180
),

0 commit comments

Comments
 (0)