fix lint goimports

pull/9855/head
alonyb 2020-12-07 09:56:16 -05:00
parent 64f4895758
commit 32bb174a9d
2 changed files with 7 additions and 6 deletions

View File

@ -18,6 +18,12 @@ package node
import (
"fmt"
"os"
"os/exec"
"path/filepath"
"strconv"
"sync"
"github.com/spf13/viper"
"k8s.io/klog/v2"
"k8s.io/minikube/pkg/minikube/config"
@ -30,11 +36,6 @@ import (
"k8s.io/minikube/pkg/minikube/reason"
"k8s.io/minikube/pkg/minikube/style"
"k8s.io/minikube/pkg/util/lock"
"os"
"os/exec"
"path/filepath"
"strconv"
"sync"
)
func showVersionInfo(k8sVersion string, cr cruntime.Manager) {

View File

@ -57,4 +57,4 @@ func stylized(st style.Enum, useColor bool, spinner bool, format string, a ...V)
}
format = applyStyle(st, useColor, format, spinner)
return Fmt(format, a...)
}
}