Skip to content
Snippets Groups Projects
Commit e668d6be authored by Maksym H's avatar Maksym H Committed by Christian Langenbacher
Browse files

fix scope in suppress dead_code (template) (#7532)

`#[allow(dead_code)]` -> `#![allow(dead_code)]` in templates
parent fa98d3de
No related merge requests found
......@@ -16,7 +16,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
#![allow(missing_docs)]
#[allow(dead_code)]
#![allow(dead_code)]
use frame::weights_prelude::*;
......
......@@ -16,7 +16,7 @@
#![allow(unused_parens)]
#![allow(unused_imports)]
#![allow(missing_docs)]
#[allow(dead_code)]
#![allow(dead_code)]
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
use core::marker::PhantomData;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment