From b1f81ce3bea025c644c5701584510913da81d901 Mon Sep 17 00:00:00 2001 From: Meysam Azad Date: Sat, 14 Oct 2023 12:03:03 +0700 Subject: [PATCH] another cargo fmt --- src/config.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/config.rs b/src/config.rs index f91c8a7a..e5ebc1bc 100644 --- a/src/config.rs +++ b/src/config.rs @@ -160,12 +160,11 @@ pub(crate) struct PrioritizeConfig { } #[derive(PartialEq, Eq, Debug, serde::Deserialize)] -pub(crate) struct ValidateConfig { -} +pub(crate) struct ValidateConfig {} impl ValidateConfig { fn default() -> Option { - Some(ValidateConfig { }) + Some(ValidateConfig {}) } }