Fix module_inception clippy lint warning
This commit is contained in:
parent
1e2ba72e37
commit
5921a6b632
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
pub use self::value::*;
|
pub use self::value::*;
|
||||||
|
|
||||||
|
#[allow(clippy::module_inception)]
|
||||||
|
mod value;
|
||||||
|
|
||||||
mod all;
|
mod all;
|
||||||
mod array;
|
mod array;
|
||||||
mod clear;
|
mod clear;
|
||||||
|
@ -21,4 +24,3 @@ mod pick;
|
||||||
mod replace;
|
mod replace;
|
||||||
mod set;
|
mod set;
|
||||||
mod single;
|
mod single;
|
||||||
mod value;
|
|
||||||
|
|
Loading…
Reference in a new issue