diff --git a/src/config.rs b/src/config.rs index ed4d805..29c2cf4 100644 --- a/src/config.rs +++ b/src/config.rs @@ -23,8 +23,7 @@ impl MAuthInfo { home.push(CONFIG_FILE); let config_data = std::fs::read_to_string(&home)?; - let config_data_value: serde_yml::Value = - serde_yml::from_slice(&config_data.into_bytes())?; + let config_data_value: serde_yml::Value = serde_yml::from_slice(&config_data.into_bytes())?; let common_section = config_data_value .get("common") .ok_or(ConfigReadError::InvalidFile(None))?;