From bbc633f42a739d679f498070bbf8b95e3912e27c Mon Sep 17 00:00:00 2001 From: Andrej Kolchin Date: Thu, 1 Aug 2024 23:02:23 +0300 Subject: [PATCH] Fix formatting --- crates/nu-command/src/strings/base/base32hex.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/nu-command/src/strings/base/base32hex.rs b/crates/nu-command/src/strings/base/base32hex.rs index f8883ae8e7..597dc2417b 100644 --- a/crates/nu-command/src/strings/base/base32hex.rs +++ b/crates/nu-command/src/strings/base/base32hex.rs @@ -14,9 +14,7 @@ impl Command for DecodeBase32Hex { fn signature(&self) -> Signature { Signature::build("decode base32hex") - .input_output_types(vec![ - (Type::String, Type::Binary), - ]) + .input_output_types(vec![(Type::String, Type::Binary)]) .allow_variants_without_examples(true) .switch("nopad", "Reject input with padding.", None) .category(Category::Formats)