mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-22 15:22:13 +01:00
clippy: fix
This commit is contained in:
parent
3a7ee33e1e
commit
6afe141d34
@ -124,7 +124,7 @@ impl Handler for Input {
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use graphql_introspection_query::introspection_response::{
|
||||
FullType, FullTypeFields, FullTypeInputFields, InputValue, TypeRef, __TypeKind,
|
||||
FullType, FullTypeInputFields, InputValue, TypeRef, __TypeKind,
|
||||
};
|
||||
use pretty_assertions::assert_eq;
|
||||
|
||||
|
@ -10,7 +10,7 @@ use genco::prelude::*;
|
||||
use graphql_introspection_query::introspection_response::FullType;
|
||||
|
||||
pub trait Handler {
|
||||
fn predicate(&self, t: &FullType) -> bool {
|
||||
fn predicate(&self, _t: &FullType) -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
|
@ -36,7 +36,7 @@ impl Handler for Scalar {
|
||||
})
|
||||
}
|
||||
|
||||
fn render_impl(&self, t: &FullType) -> eyre::Result<genco::prelude::rust::Tokens> {
|
||||
fn render_impl(&self, _t: &FullType) -> eyre::Result<genco::prelude::rust::Tokens> {
|
||||
todo!()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user