Skip to content

Commit

Permalink
refactor: add subtask register
Browse files Browse the repository at this point in the history
  • Loading branch information
chenggui53 committed Jul 19, 2023
1 parent 54aee04 commit 416fcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/helpers/pluginhelper/subtaskmeta/sorter/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func constructDependenciesByTable(metas []*plugin.SubTaskMeta) []*plugin.SubTask

func keys[T comparable](raw map[T]any) []T {
list := make([]T, 0)
for key, _ := range raw {
for key := range raw {
list = append(list, key)
}
return list
Expand Down

0 comments on commit 416fcbd

Please sign in to comment.