remove useless 'mut'

This commit is contained in:
0xf8 2023-05-29 23:44:25 -04:00
parent 87fa949309
commit 013e2fab5c
Signed by: 0xf8
GPG Key ID: 446580D758689584
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ pub fn get_host(config: &mut ConfigManager) -> Result<Host> {
}
let hosts = config.configs.to_owned();
let mut hosts: Vec<Host> = hosts.into_iter().collect();
let hosts: Vec<Host> = hosts.into_iter().collect();
let theme = ColorfulTheme::default();
let mut select = Select::with_theme(&theme);