Fix new clippy lints

This commit is contained in:
Filip Tibell 2023-10-05 20:54:36 -05:00
parent dc7e3888d7
commit e92cb4ee64
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

@ -48,9 +48,9 @@ async fn read_or_create_vscode_settings_json() -> Result<JsonValue, SetupError>
// let the user choose their editor for interactive setup // let the user choose their editor for interactive setup
match fs::create_dir_all(path_dir).await { match fs::create_dir_all(path_dir).await {
Err(_) => Err(SetupError::Write), Err(_) => Err(SetupError::Write),
Ok(_) => match fs::write(path_file, "{}").await { Ok(()) => match fs::write(path_file, "{}").await {
Err(_) => Err(SetupError::Write), Err(_) => Err(SetupError::Write),
Ok(_) => Ok(JsonValue::Object(serde_json::Map::new())), Ok(()) => Ok(JsonValue::Object(serde_json::Map::new())),
}, },
} }
} }
@ -67,7 +67,7 @@ async fn write_vscode_settings_json(value: JsonValue) -> Result<(), SetupError>
Err(_) => Err(SetupError::Serialize), Err(_) => Err(SetupError::Serialize),
Ok(json) => match fs::write(vscode_path(), json).await { Ok(json) => match fs::write(vscode_path(), json).await {
Err(_) => Err(SetupError::Write), Err(_) => Err(SetupError::Write),
Ok(_) => Ok(()), Ok(()) => Ok(()),
}, },
} }
} }
@ -112,7 +112,7 @@ pub async fn run_setup() {
} }
.await; .await;
let message = match res { let message = match res {
Ok(_) => "These settings have been added to your workspace for Visual Studio Code:", Ok(()) => "These settings have been added to your workspace for Visual Studio Code:",
Err(_) => "To finish setting up your editor, add these settings to your workspace:", Err(_) => "To finish setting up your editor, add these settings to your workspace:",
}; };
let version_string = lune_version(); let version_string = lune_version();

View file

@ -291,7 +291,7 @@ impl<'lua> LuaToDomValue<'lua> for LuaAnyUserData<'lua> {
} }
ty => { ty => {
return Err(DomConversionError::ToDomValue { Err(DomConversionError::ToDomValue {
to: ty.variant_name().unwrap_or("???"), to: ty.variant_name().unwrap_or("???"),
from: "userdata", from: "userdata",
detail: Some("Type not supported".to_string()), detail: Some("Type not supported".to_string()),