Skip to content

Commit af01b6d

Browse files
committed
use any instread of interface{}
1 parent 0bc0688 commit af01b6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5629,7 +5629,7 @@ type MapStringFloatCmd struct {
56295629

56305630
var _ Cmder = (*MapStringFloatCmd)(nil)
56315631

5632-
func NewMapStringFloatCmd(ctx context.Context, args ...interface{}) *MapStringFloatCmd {
5632+
func NewMapStringFloatCmd(ctx context.Context, args ...any) *MapStringFloatCmd {
56335633
return &MapStringFloatCmd{
56345634
baseCmd: baseCmd{
56355635
ctx: ctx,

0 commit comments

Comments
 (0)