Skip to content

Commit c25ae06

Browse files
committed
Remove unused Write as _fmtWrite
We can bring the `Write` trait into scope, no need to underscore it.
1 parent f344fb3 commit c25ae06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/key.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ pub use secp256k1::{XOnlyPublicKey, KeyPair};
2121
use prelude::*;
2222

2323
use core::{ops, str::FromStr};
24-
use core::fmt::{self, Write as _fmtWrite};
24+
use core::fmt::{self, Write};
2525
use io;
2626
#[cfg(feature = "std")] use std::error;
2727

0 commit comments

Comments
 (0)