Remove unnecessary brackets

Signed-off-by: Roland Vet <RlndVt@protonmail.com>
This commit is contained in:
Roland Vet 2024-02-16 08:14:29 +01:00
parent d67643f24c
commit 911c53266a
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
use bch_bindgen::{bcachefs, bcachefs::bch_sb_handle, opt_set};
use log::{info, debug, error, LevelFilter};
use clap::{Parser};
use clap::Parser;
use uuid::Uuid;
use std::io::{stdout, IsTerminal};
use std::path::PathBuf;

View File

@ -1,6 +1,6 @@
use std::{fmt, fs, io::{stdin, IsTerminal}};
use log::{info};
use log::info;
use bch_bindgen::bcachefs::bch_sb_handle;
use clap::builder::PossibleValue;
use crate::c_str;