From 06846f27b7971e4a975c0b44005136f469ada61f Mon Sep 17 00:00:00 2001 From: Hirokazu Hata Date: Wed, 18 Mar 2020 09:19:02 +0900 Subject: [PATCH] Fix clippy error --- graphql_query_derive/src/attributes.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/graphql_query_derive/src/attributes.rs b/graphql_query_derive/src/attributes.rs index c25513d83..ae915a18e 100644 --- a/graphql_query_derive/src/attributes.rs +++ b/graphql_query_derive/src/attributes.rs @@ -1,7 +1,6 @@ use failure::*; use graphql_client_codegen::deprecation::DeprecationStrategy; use graphql_client_codegen::normalization::Normalization; -use syn; const DEPRECATION_ERROR: &str = "deprecated must be one of 'allow', 'deny', or 'warn'"; const NORMALIZATION_ERROR: &str = "normalization must be one of 'none' or 'rust'";