From 96c86cffe686aa30f1685d290753be6848534907 Mon Sep 17 00:00:00 2001 From: NotTheDr01ds <32344964+NotTheDr01ds@users.noreply.github.com> Date: Thu, 1 Aug 2024 11:03:24 -0400 Subject: [PATCH] Fixed fmt --- crates/nu-command/src/random/chars.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/crates/nu-command/src/random/chars.rs b/crates/nu-command/src/random/chars.rs index ad7ed1387a..aea27129b9 100644 --- a/crates/nu-command/src/random/chars.rs +++ b/crates/nu-command/src/random/chars.rs @@ -19,7 +19,12 @@ impl Command for SubCommand { Signature::build("random chars") .input_output_types(vec![(Type::Nothing, Type::String)]) .allow_variants_without_examples(true) - .named("length", SyntaxShape::Int, "Number of chars (default 25)", Some('l')) + .named( + "length", + SyntaxShape::Int, + "Number of chars (default 25)", + Some('l'), + ) .category(Category::Random) }