Fix more lint

This commit is contained in:
Gleb Kanterov 2025-01-08 17:39:17 +01:00
parent 6a5680afd5
commit 4c89292887
No known key found for this signature in database
GPG Key ID: 4D87C640DBD00176
2 changed files with 1 additions and 3 deletions

View File

@ -15,8 +15,6 @@ import (
"github.com/databricks/cli/bundle/config/mutator/paths"
"github.com/databricks/cli/bundle/config/mutator/paths"
"github.com/databricks/databricks-sdk-go/logger"
"github.com/fatih/color"

View File

@ -730,7 +730,7 @@ func withProcessStub(t *testing.T, args []string, output, diagnostics, locations
}
func getArg(args []string, name string) string {
for i := range len(args) {
for i := range args {
if args[i] == name {
return args[i+1]
}