Remove unused Write as _fmtWrite
We can bring the `Write` trait into scope, no need to underscore it.
This commit is contained in:
parent
30574020ef
commit
033a12def7
|
@ -21,7 +21,7 @@ pub use secp256k1::{XOnlyPublicKey, KeyPair};
|
|||
use prelude::*;
|
||||
|
||||
use core::{ops, str::FromStr};
|
||||
use core::fmt::{self, Write as _fmtWrite};
|
||||
use core::fmt::{self, Write};
|
||||
use io;
|
||||
#[cfg(feature = "std")] use std::error;
|
||||
|
||||
|
|
Loading…
Reference in New Issue