From ec1df0640cc6edd853c5d10a1c0383476c93b1e0 Mon Sep 17 00:00:00 2001 From: Sai Kumar Date: Mon, 6 Nov 2023 14:29:25 +0530 Subject: [PATCH] fix the lint --- src/contract.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/contract.rs b/src/contract.rs index a59913e..72de871 100644 --- a/src/contract.rs +++ b/src/contract.rs @@ -1,7 +1,7 @@ #[cfg(not(feature = "library"))] use cosmwasm_std::{ - entry_point, Addr, Binary, ContractResult, Deps, DepsMut, Env, - MessageInfo, QueryRequest, Response, StdError, StdResult, SystemResult, + entry_point, Addr, Binary, ContractResult, Deps, DepsMut, Env, MessageInfo, QueryRequest, + Response, StdError, StdResult, SystemResult, }; use cosmwasm_std::{from_json, to_json_binary, to_json_vec}; use cw2::set_contract_version;