Skip to content

Commit 03dde50

Browse files
committed
use any instread of interface{}
1 parent b0e85a5 commit 03dde50

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)