remove parens (#1017)

This commit is contained in:
Tadeo Hepperle
2023-06-15 12:19:55 +02:00
committed by GitHub
parent 3cfe91e3be
commit b403401753
+1 -1
View File
@@ -76,7 +76,7 @@ pub async fn run(opts: Opts, output: &mut impl Write) -> color_eyre::Result<()>
Ok(())
}
"hex" => {
let hex_data = format!("0x{:?}", hex::encode(metadata.encode()));
let hex_data = format!("0x{}", hex::encode(metadata.encode()));
write!(output, "{hex_data}")?;
Ok(())
}