Skip to content

Commit

Permalink
style: fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Aug 5, 2024
1 parent 9732ccc commit df96c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ fn print_rules_as_text(
if print_tags && !tags.is_empty() {
line.push_str(" [");
for (pos, tag) in tags.with_position() {
line.push_str(&format!("{}", tag.identifier()));
line.push_str(tag.identifier());
if !matches!(pos, itertools::Position::Last) {
line.push(',');
}
Expand Down

0 comments on commit df96c75

Please sign in to comment.