chore: cleanup

This commit is contained in:
Vladimir Mihailenco 2022-02-18 09:45:35 +02:00
parent ed1b5bb28a
commit b096f432a3
1 changed files with 2 additions and 1 deletions

View File

@ -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)
}
}