Fix go test./... issue: fmt.Println arg list ends with redundant newline (#705)

This commit is contained in:
Alexander F. Rødseth 2023-10-05 17:11:04 +02:00 committed by GitHub
parent 9e2de1bd2c
commit d104b7e997
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -687,7 +687,7 @@ func generateInteractive(cmd *cobra.Command, model string) error {
switch args[1] {
case "license":
if resp.License == "" {
fmt.Println("No license was specified for this model.\n")
fmt.Print("No license was specified for this model.\n\n")
} else {
fmt.Println(resp.License)
}
@ -695,19 +695,19 @@ func generateInteractive(cmd *cobra.Command, model string) error {
fmt.Println(resp.Modelfile)
case "parameters":
if resp.Parameters == "" {
fmt.Println("No parameters were specified for this model.\n")
fmt.Print("No parameters were specified for this model.\n\n")
} else {
fmt.Println(resp.Parameters)
}
case "system":
if resp.System == "" {
fmt.Println("No system prompt was specified for this model.\n")
fmt.Print("No system prompt was specified for this model.\n\n")
} else {
fmt.Println(resp.System)
}
case "template":
if resp.Template == "" {
fmt.Println("No prompt template was specified for this model.\n")
fmt.Print("No prompt template was specified for this model.\n\n")
} else {
fmt.Println(resp.Template)
}