style(bar-keyboard): run cargo +nightly fmt

This commit is contained in:
David
2025-02-08 11:02:32 +08:00
parent fb9054a18b
commit 55cc2fd889

View File

@@ -35,7 +35,9 @@ pub struct KeyboardConfig {
impl From<KeyboardConfig> for Keyboard {
fn from(value: KeyboardConfig) -> Self {
let data_refresh_interval = value.data_refresh_interval.unwrap_or(DEFAULT_DATA_REFRESH_INTERVAL);
let data_refresh_interval = value
.data_refresh_interval
.unwrap_or(DEFAULT_DATA_REFRESH_INTERVAL);
Self {
enable: value.enable,
data_refresh_interval,