chore: fix clippy

feat/type-attributes
Tomáš Mládek 2023-04-25 19:33:57 +02:00
parent 3d80b2e13c
commit a38261cc6e
1 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ enum Commands {
/// Perform a query against an UpEnd server instance.
Query {
/// URL of the UpEnd instance to query.
#[arg(short, long, default_value="http://localhost:8093")]
#[arg(short, long, default_value = "http://localhost:8093")]
url: Url,
/// The query itself, in L-expression format.
query: String,
@ -186,7 +186,7 @@ fn main() -> Result<()> {
},
Err(err) => {
error!("{}", response.text()?);
return Err(err.into());
Err(err.into())
}
}
}
@ -221,7 +221,7 @@ fn main() -> Result<()> {
}
Err(err) => {
error!("{}", response.text()?);
return Err(err.into());
Err(err.into())
}
}
}