Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
domcorvasce committed Dec 21, 2023
1 parent 14a070b commit 52dd93a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundle/config/mutator/process_target_mode.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func (m *processTargetMode) Name() string {
// Normalize the resource name prefix in order to use it
// in constrained contexts such as model serving endpoints names
func normalizeResourceNamePrefix(prefix string) string {
return strings.Map(replaceNonAlphanumeric, strings.ToLower(strings.ReplaceAll(prefix, " ", "_") + "_"))
return strings.Map(replaceNonAlphanumeric, strings.ToLower(strings.ReplaceAll(prefix, " ", "_")+"_"))
}

// Mark all resources as being for 'development' purposes, i.e.
Expand Down

0 comments on commit 52dd93a

Please sign in to comment.