chore: format with rustfmt - 2

This commit is contained in:
Erica Marigold 2023-09-13 18:10:46 +05:30 committed by GitHub
parent 5a70107020
commit 8a3528f42a
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,8 +55,8 @@
//! doesn't find it, it will use the default: `C` (english) //! doesn't find it, it will use the default: `C` (english)
//! //!
#[macro_use] #[allow(unused_imports)]
extern crate lazy_static; pub(crate) use lazy_static::lazy_static;
use std::collections::HashMap; use std::collections::HashMap;
use std::fmt; use std::fmt;
@ -198,7 +198,7 @@ where
(_, _, _) => None, (_, _, _) => None,
}, },
), ),
// for the future expansion // for the future expansion
Internal(_) => (1, None), Internal(_) => (1, None),
}; };