cleaned up unused imports
Some checks failed
Makefile CI / Release - Linux-x86_64 (push) Failing after 23s
Makefile CI / Release - Windows-x86_64 (push) Has been cancelled

This commit is contained in:
2025-03-30 13:25:37 -04:00
parent 75230a5cc7
commit 9b43f600b8
5 changed files with 9 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
use clap::Parser;
use chrono::NaiveDate;
use log::{error, info, trace, warn};
use log::{error, trace, warn};
pub(crate) const FEATURE_REPORT_ID_SHIFT: u8 = 4;
@@ -150,7 +150,7 @@ struct FormatRule {
const FORMAT_RULES: &[FormatRule] = &[
// Rule 1: Check for Original format based on date
FormatRule {
matches: |name, fw| {
matches: |_name, fw| {
const THRESHOLD: &str = "2024-12-26";
let date_str = fw.split_whitespace().last().unwrap_or("");
if date_str.len() == 8 {