Fix module_inception clippy lint warning

This commit is contained in:
Tobie Morgan Hitchcock 2022-05-06 23:09:32 +01:00
parent 1e2ba72e37
commit 5921a6b632

View file

@ -1,5 +1,8 @@
pub use self::value::*;
#[allow(clippy::module_inception)]
mod value;
mod all;
mod array;
mod clear;
@ -21,4 +24,3 @@ mod pick;
mod replace;
mod set;
mod single;
mod value;