Skip to content

Commit 89a2087

Browse files
style: replace fmt.Sprintf with string concatenation
Co-authored-by: Isaac Signed-off-by: James Broadhead <jamesbroadhead@gmail.com>
1 parent 2cc32a1 commit 89a2087

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd/apps/bundle_helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Alternatively, run this command from a project directory containing
4848
databricks.yml to auto-detect the app name.`
4949

5050
if hint != "" {
51-
msg += fmt.Sprintf("\n\nDid you mean?\n databricks apps deploy %s", hint)
51+
msg += "\n\nDid you mean?\n databricks apps deploy " + hint
5252
}
5353

5454
return errors.New(msg)

0 commit comments

Comments
 (0)