Remove unused Write as _fmtWrite

We can bring the `Write` trait into scope, no need to underscore it.
This commit is contained in:
Tobin C. Harding 2022-04-21 12:37:56 +10:00
parent 30574020ef
commit 033a12def7
1 changed files with 1 additions and 1 deletions

View File

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