Skip to content

Commit

Permalink
Adhere to any over interface
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Girstenbrei <[email protected]>
  • Loading branch information
girstenbrei committed Feb 3, 2025
1 parent 08af63a commit 5663855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applicationset/generators/merge.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ func getParamSetsByMergeKey(mergeKeys []string, paramSets []map[string]any, useG
//
// This can be thought of a modulo operation: 'paramSet % keys' leaves a
// representation of the paramSet with respect to the keys.
func generateParamSetRepr(keys map[string]bool, paramSet map[string]interface{}, useGoTemplate bool, goTemplateOptions []string) (paramSetRepr map[string]interface{}, err error) {
paramSetRepr = make(map[string]interface{})
func generateParamSetRepr(keys map[string]bool, paramSet map[string]any, useGoTemplate bool, goTemplateOptions []string) (paramSetRepr map[string]any, err error) {
paramSetRepr = make(map[string]any)
// For each part of these keys, fetch the value from the paramSet
for mergeKey := range keys {
if useGoTemplate {
Expand Down

0 comments on commit 5663855

Please sign in to comment.