Skip to content
Snippets Groups Projects
Commit 03440f5c authored by Maaz Ahmed's avatar Maaz Ahmed
Browse files

chore: fix clippy lints

parent 5c28b6bc
No related branches found
No related tags found
1 merge request!28Resolve "Crate fails to compile"
use std::fmt::Display; use std::fmt::Display;
#[allow(unused_imports)]
use crate::{query::IntoQuery, seal::Sealed}; use crate::{query::IntoQuery, seal::Sealed};
#[allow(unused_imports)]
use super::Operable; use super::Operable;
#[derive(Debug, Clone, Default)] #[derive(Debug, Clone, Default)]
......
...@@ -29,7 +29,7 @@ impl IntoResult for Result<response::PromqlResult, error::Error> { ...@@ -29,7 +29,7 @@ impl IntoResult for Result<response::PromqlResult, error::Error> {
impl IntoResult for Result<reqwest::Response, error::Error> { impl IntoResult for Result<reqwest::Response, error::Error> {
type Result = RawResult; type Result = RawResult;
fn into_result(self) -> Self::Result { fn into_result(self) -> Self::Result {
self.map(|r| r.into()).map_err(|e| e.into()) self.map_err(|e| e.into())
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment