From bdb14f48f944af01a6e346871b3776d6eefa4896 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 17 Apr 2024 12:12:30 +0530 Subject: [PATCH] chore(fmt): apply proper formatting --- src/lune/util/formatting.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lune/util/formatting.rs b/src/lune/util/formatting.rs index 9d5eba0..54376b7 100644 --- a/src/lune/util/formatting.rs +++ b/src/lune/util/formatting.rs @@ -148,7 +148,12 @@ pub fn pretty_format_value( )?, _ => { write!(buffer, "\n{depth_indent}{INDENT}[")?; - pretty_format_value(buffer, &key, parent_table_addr.clone(), depth + 1)?; + pretty_format_value( + buffer, + &key, + parent_table_addr.clone(), + depth + 1, + )?; write!(buffer, "] {} ", STYLE_DIM.apply_to("="))?; } }