fix lint goimports
parent
64f4895758
commit
32bb174a9d
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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...)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue