From 2cea1e9e7364b26cd6988e9e2824c1bc3d660a7a Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Mon, 9 Sep 2024 10:47:23 +1000 Subject: [PATCH] fmt --- src/bin/stellar-strkey/decode.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/bin/stellar-strkey/decode.rs b/src/bin/stellar-strkey/decode.rs index 7ef4c78..cd6126c 100644 --- a/src/bin/stellar-strkey/decode.rs +++ b/src/bin/stellar-strkey/decode.rs @@ -11,9 +11,7 @@ pub enum Error { impl core::fmt::Display for Error { fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result { match self { - Error::Decode(s, inner) => { - f.write_fmt(format_args!("decoding {s:?}: {inner}")) - } + Error::Decode(s, inner) => f.write_fmt(format_args!("decoding {s:?}: {inner}")), } } }