From f0b93e37fef91353ee811160cccc84e6cc1817d3 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Sat, 10 May 2025 13:18:31 -0300 Subject: [PATCH] chore: move prettytable color import to correct position --- src/modes/list.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modes/list.rs b/src/modes/list.rs index 80d2fef..610aab0 100644 --- a/src/modes/list.rs +++ b/src/modes/list.rs @@ -3,10 +3,10 @@ use crate::Alignment; 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 crate::modes::common::{size_column, string_column}; +use prettytable::color; use prettytable::row; use prettytable::{Attr, Cell, Row, Table}; use rusqlite::Connection; -use prettytable::color; pub fn mode_list( cmd: &mut Command,