revert: expect lint

Expect lint was causing issues with crates/docker builds, revert until fix is found
This commit is contained in:
Jack Wills
2024-09-07 21:25:14 +00:00
parent a7139d7776
commit 578ed9f085
8 changed files with 20 additions and 20 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ use tracing::error;
use crate::{ENV_KEY, ENV_VALUE};
#[derive(Parser, Debug, Clone)]
#[expect(clippy::struct_excessive_bools)]
#[allow(clippy::struct_excessive_bools)]
#[command(version, about)]
pub struct Args {
/// Docker update interval in ms, minimum effectively 1000
@@ -47,7 +47,7 @@ pub struct Args {
}
#[derive(Debug, Clone)]
#[expect(clippy::struct_excessive_bools)]
#[allow(clippy::struct_excessive_bools)]
pub struct CliArgs {
pub color: bool,
pub docker_interval: u32,