Skip to content

Commit 2c849af

Browse files
committed
address comments on code review
1 parent 16d0fbf commit 2c849af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

command/eval_status.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package command
55

66
import (
77
"fmt"
8+
"slices"
89
"sort"
910
"strconv"
1011
"strings"
@@ -386,7 +387,7 @@ func formatPlanAnnotations(desiredTGUpdates map[string]*api.DesiredUpdates, verb
386387
for tg := range desiredTGUpdates {
387388
taskGroups = append(taskGroups, tg)
388389
}
389-
sort.StringSlice(taskGroups).Sort()
390+
slices.Sort(taskGroups)
390391

391392
i := 1
392393
for _, tg := range taskGroups {

0 commit comments

Comments
 (0)