Skip to content

Commit 7593f24

Browse files
committed
lint
1 parent 410cd9f commit 7593f24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cmd/skaffold/app/cmd/config/list.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,12 @@ limitations under the License.
1717
package config
1818

1919
import (
20-
yaml "gopkg.in/yaml.v2"
2120
"io"
2221

2322
"github.com/pkg/errors"
2423
"github.com/spf13/cobra"
24+
25+
yaml "gopkg.in/yaml.v2"
2526
)
2627

2728
func NewCmdList(out io.Writer) *cobra.Command {

cmd/skaffold/app/cmd/config/set.go

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ func setConfigValue(name string, value interface{}) error {
5353
var fieldName string
5454
for i := 0; i < cfgValue.NumField(); i++ {
5555
fieldType := reflect.TypeOf(*cfg).Field(i)
56-
fmt.Printf("fieldType: %+v\n", fieldType)
5756
for _, tag := range strings.Split(fieldType.Tag.Get("yaml"), ",") {
5857
if tag == name {
5958
fieldName = fieldType.Name

0 commit comments

Comments
 (0)