fix: Correct MetaPluginType conversion and remove unused imports

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-09-03 08:50:57 -03:00
parent 618c164d2d
commit 3a90c12dc2
2 changed files with 10 additions and 12 deletions

View File

@@ -1,7 +1,6 @@
use clap::*;
use is_terminal::IsTerminal;
use std::path::PathBuf;
use std::str::FromStr;
use log::debug;
use crate::modes::common::{get_format_box_chars_no_border_line_separator, OutputFormat};
@@ -11,10 +10,9 @@ use serde_json;
use serde_yaml;
use prettytable::row;
use prettytable::{Attr, Cell, Row, Table};
use prettytable::format::consts::{FORMAT_BOX_CHARS, FORMAT_NO_BORDER_LINE_SEPARATOR};
use prettytable::format::consts::{FORMAT_NO_BORDER_LINE_SEPARATOR};
use crate::meta_plugin::{MetaPluginType, get_meta_plugin};
use crate::common::status::{PathInfo, CompressionInfo, MetaPluginInfo};
use crate::common::status::{PathInfo, CompressionInfo};
fn build_path_table(path_info: &PathInfo) -> Table {
let mut path_table = Table::new();