Skip to content

Commit

Permalink
style: fix warning about unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Nov 21, 2024
1 parent ba087e2 commit a2e447e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/src/commands/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ use crossbeam::channel::Sender;
use itertools::Itertools;
use superconsole::style::Stylize;
use superconsole::{Component, Line, Lines, Span};
use yansi::Color::{Cyan, Green, Red, Yellow};
#[cfg(feature = "rules-profiling")]
use yansi::Color::Green;
use yansi::Color::{Cyan, Red, Yellow};
use yansi::Paint;
use yara_x::errors::ScanError;
use yara_x::{MetaValue, Patterns, Rule, Rules, ScanOptions, Scanner};
Expand Down

0 comments on commit a2e447e

Please sign in to comment.