chore: cargo fmt

This commit is contained in:
2025-03-13 20:32:28 +01:00
parent 3cdaacabac
commit f340278236
5 changed files with 318 additions and 288 deletions

View File

@@ -33,7 +33,7 @@ pub struct NightLampConfig {
pub night_lamp_hour_end: u8,
pub night_lamp_only_when_dark: bool,
pub low_soc_cutoff: u8,
pub low_soc_restore: u8
pub low_soc_restore: u8,
}
impl Default for NightLampConfig {
fn default() -> Self {
@@ -43,7 +43,7 @@ impl Default for NightLampConfig {
night_lamp_hour_end: 2,
night_lamp_only_when_dark: true,
low_soc_cutoff: 30,
low_soc_restore: 50
low_soc_restore: 50,
}
}
}