From cf5efb5c0a7f163f259cc0bf8c4fb2d0db9a504d Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 19 Jun 2024 11:52:38 +0200 Subject: [PATCH] cleanup use statements much more merge friendly this way... Signed-off-by: Wolfgang Bumiller --- proxmox-router/src/cli/mod.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/proxmox-router/src/cli/mod.rs b/proxmox-router/src/cli/mod.rs index 78f08920..c31f8e65 100644 --- a/proxmox-router/src/cli/mod.rs +++ b/proxmox-router/src/cli/mod.rs @@ -12,10 +12,8 @@ //! - Ability to create interactive commands (using ``rustyline``) //! - Supports complex/nested commands -use std::{ - collections::HashMap, - io::{self, Write}, -}; +use std::collections::HashMap; +use std::io::{self, Write}; use anyhow::{bail, Error};