From b096f432a3d065bbec8e3c3e062df740627afd2c Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Fri, 18 Feb 2022 09:45:35 +0200 Subject: [PATCH] chore: cleanup --- command.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/command.go b/command.go index 98328761..4bb12a85 100644 --- a/command.go +++ b/command.go @@ -156,7 +156,8 @@ func (cmd *baseCmd) stringArg(pos int) string { case string: return v default: - return fmt.Sprintf("%v", v) + // TODO: consider using appendArg + return fmt.Sprint(v) } }