Skip to content

Commit

Permalink
Silence clippy::new-without-default (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra authored Dec 3, 2024
2 parents 0c45210 + c398af2 commit cd3c4f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs-test-gen/templates/sylvia/cw_storage_contract.tpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unexpected_cfgs, dead_code, unused_variables, unused_imports)]
#![allow(unexpected_cfgs, dead_code, unused_variables, unused_imports, clippy::new_without_default)]

use sylvia::cw_std::{Addr, Binary, Coin, entry_point, Reply, SubMsg, WasmMsg, to_json_binary, DepsMut, Empty, Env, IbcChannelOpenMsg, IbcChannelOpenResponse, Response, StdError, StdResult, SubMsgResult};
use sylvia::{contract, entry_points, interface};
Expand Down
2 changes: 1 addition & 1 deletion docs-test-gen/templates/sylvia/empty.tpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unexpected_cfgs, dead_code, unused_variables, unused_imports)]
#![allow(unexpected_cfgs, dead_code, unused_variables, unused_imports, clippy::new_without_default)]

use sylvia::cw_std::{Addr, Binary, Coin, entry_point, Reply, SubMsg, WasmMsg, to_json_binary, DepsMut, Empty, Env, IbcChannelOpenMsg, IbcChannelOpenResponse, Response, StdError, StdResult, SubMsgResult};
use sylvia::{contract, entry_points, interface};
Expand Down
2 changes: 1 addition & 1 deletion docs-test-gen/templates/sylvia/storey_contract.tpl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![allow(unexpected_cfgs, dead_code, unused_variables, unused_imports)]
#![allow(unexpected_cfgs, dead_code, unused_variables, unused_imports, clippy::new_without_default)]

use sylvia::cw_std::{Addr, Binary, Coin, entry_point, Reply, SubMsg, WasmMsg, to_json_binary, DepsMut, Empty, Env, IbcChannelOpenMsg, IbcChannelOpenResponse, Response, StdError, StdResult, SubMsgResult};
use sylvia::{contract, entry_points, interface};
Expand Down

0 comments on commit cd3c4f2

Please sign in to comment.