style: reorder imports and adjust formatting
This commit is contained in:
committed by
Andrew Phillips (aider)
parent
97d89196ab
commit
6bbc306c23
@@ -1,18 +1,18 @@
|
||||
use anyhow::{anyhow, Result};
|
||||
use log::debug;
|
||||
use chrono::Local;
|
||||
use prettytable::format::consts;
|
||||
use clap::Command;
|
||||
use log::debug;
|
||||
use prettytable::format::consts;
|
||||
use std::collections::HashMap;
|
||||
use std::path::PathBuf;
|
||||
|
||||
use crate::db::{get_item, get_item_last, get_items, get_items_matching, Item, Tag, Meta};
|
||||
use std::io::{ErrorKind};
|
||||
use crate::db::{get_item, get_item_last, get_items, get_items_matching, Item, Meta, Tag};
|
||||
use crate::modes::common::{format_size, get_format_box_chars_no_border_line_separator};
|
||||
use rusqlite::Connection;
|
||||
use crate::modes::common::{size_column, string_column};
|
||||
use prettytable::row;
|
||||
use prettytable::{Attr, Cell, Row, Table};
|
||||
use rusqlite::Connection;
|
||||
use std::io::ErrorKind;
|
||||
|
||||
pub fn mode_list(
|
||||
cmd: &mut Command,
|
||||
|
||||
Reference in New Issue
Block a user