From 2e5820965229db1d2bfd160ac6adb9a94f0381f1 Mon Sep 17 00:00:00 2001 From: Constantin Nickel Date: Wed, 10 Jan 2024 07:03:08 +0100 Subject: [PATCH] Remove unused imports --- src/bin/modiom/command_prelude.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/modiom/command_prelude.rs b/src/bin/modiom/command_prelude.rs index 1639ae7..2adc15b 100644 --- a/src/bin/modiom/command_prelude.rs +++ b/src/bin/modiom/command_prelude.rs @@ -5,12 +5,12 @@ use std::io; use std::path::{Path, PathBuf}; pub use clap::builder::{ - Arg, ArgAction, ArgGroup, Command, PathBufValueParser, TypedValueParser, ValueParser, + Arg, ArgAction, Command, PathBufValueParser, TypedValueParser, ValueParser, }; pub use clap::{value_parser, ArgMatches}; pub use modiom::config::Config; pub use modiom::{CliResult, Result}; -pub use prettytable::{cell, row, table}; +pub use prettytable::{row, table}; use modiom::utils::find_manifest_for_wd;