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:
parent
e3d9376a9b
commit
d1c876eda5
|
@ -32,12 +32,9 @@ pub mod locktime;
|
||||||
pub mod opcodes;
|
pub mod opcodes;
|
||||||
pub mod sequence;
|
pub mod sequence;
|
||||||
|
|
||||||
#[rustfmt::skip] // Keep public re-exports separate.
|
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub use self::{
|
pub use self::locktime::{absolute, relative};
|
||||||
locktime::{absolute, relative},
|
|
||||||
};
|
|
||||||
#[doc(inline)]
|
#[doc(inline)]
|
||||||
pub use self::sequence::Sequence;
|
pub use self::sequence::Sequence;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue