From 966aef10b90da5f3e36fb06e777753cca907e2ed Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Fri, 29 Sep 2023 08:49:50 -0400 Subject: [PATCH] clippy:uninlined_format_args --- src/cmd/stats.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmd/stats.rs b/src/cmd/stats.rs index 24a579a37..8c37991ff 100644 --- a/src/cmd/stats.rs +++ b/src/cmd/stats.rs @@ -915,7 +915,7 @@ fn init_date_inference( INFER_DATE_FLAGS .set(infer_date_flags) - .map_err(|e| format!("Cannot init date inference flags: {:?}", e))?; + .map_err(|e| format!("Cannot init date inference flags: {e:?}"))?; Ok(()) }