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.
This commit is contained in:
Tobin C. Harding 2024-07-23 01:48:20 -05:00
parent e3d9376a9b
commit d1c876eda5
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 4 deletions

View File

@ -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;