From d1c876eda58a1d80384d89f76e65539cfe909a66 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Tue, 23 Jul 2024 01:48:20 -0500 Subject: [PATCH] Remove rustfmt attribute There are no other use statements so we do not need to keep the public ones separate with a `rustfmt` attribute. Remove the attribute and run the formatter. --- primitives/src/lib.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index 5438df424..bd7d57f7d 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -32,12 +32,9 @@ pub mod locktime; pub mod opcodes; pub mod sequence; -#[rustfmt::skip] // Keep public re-exports separate. #[doc(inline)] #[cfg(feature = "alloc")] -pub use self::{ - locktime::{absolute, relative}, -}; +pub use self::locktime::{absolute, relative}; #[doc(inline)] pub use self::sequence::Sequence;