chore: fix clippy lints

This commit is contained in:
daimond113 2025-02-03 15:52:24 +01:00
parent 0b5c233734
commit 7ad4c6f5c6
No known key found for this signature in database
GPG key ID: 640DC95EC1190354

View file

@ -329,10 +329,7 @@ pub async fn get_index(project: &Project, index: Option<&str>) -> anyhow::Result
};
let index_url = match index {
Some(index) => match index.try_into() {
Ok(url) => Some(url),
Err(_) => None,
},
Some(index) => index.try_into().ok(),
None => match manifest {
Some(_) => None,
None => Some(read_config().await?.default_index),