1
0
mirror of https://github.com/redis/go-redis.git synced 2025-04-19 07:22:17 +03:00

chore: cleanup

This commit is contained in:
Vladimir Mihailenco 2022-02-18 09:45:35 +02:00
parent ed1b5bb28a
commit b096f432a3

View File

@ -156,7 +156,8 @@ func (cmd *baseCmd) stringArg(pos int) string {
case string: case string:
return v return v
default: default:
return fmt.Sprintf("%v", v) // TODO: consider using appendArg
return fmt.Sprint(v)
} }
} }