From 68d6ab12996ae7d21944e065b8a25657a6d44c0e Mon Sep 17 00:00:00 2001 From: MNandor Date: Fri, 29 Oct 2021 17:53:42 +0300 Subject: [PATCH] Formatting fix --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index cf02a4e..90efa68 100644 --- a/src/config.rs +++ b/src/config.rs @@ -550,7 +550,7 @@ impl Config { let tag_name = Self::get_config("uda.taskwarrior-tui.next-tag.name", data); match tag_name { None => "next".to_string(), - Some(tag_name) => format!("{}", tag_name), + Some(tag_name) => tag_name, } } }