From dd8a3fd23c42348192f3aadfbdb3fd7a7da24460 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Tue, 3 Jan 2023 12:56:05 +0100 Subject: [PATCH] Fix clippy warning --- cli/src/format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/format.rs b/cli/src/format.rs index d5f0c77de..d638a82cf 100644 --- a/cli/src/format.rs +++ b/cli/src/format.rs @@ -13,7 +13,7 @@ use phylum_types::types::package::{ }; use phylum_types::types::project::ProjectSummaryResponse; use prettytable::format::Alignment; -use prettytable::{cell, color as table_color, row, table, Attr, Cell, Row, Table}; +use prettytable::{color as table_color, row, table, Attr, Cell, Row, Table}; use serde::Serialize; use unicode_width::UnicodeWidthStr;