Skip to content

Commit

Permalink
Merge pull request #3178 from cupakob/remove-redundand-imports
Browse files Browse the repository at this point in the history
🌱 Remove redundand imports
  • Loading branch information
kcp-ci-bot authored Oct 9, 2024
2 parents 6a4e71a + 1da0af9 commit 7631545
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pkg/metadata/dynamic.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

kcpdynamic "github.com/kcp-dev/client-go/dynamic"

dynamic "k8s.io/client-go/dynamic"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/rest"

"github.com/kcp-dev/kcp/pkg/server/requestinfo"
Expand Down
2 changes: 1 addition & 1 deletion pkg/proxy/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
clientcmdapi "k8s.io/client-go/tools/clientcmd/api"

proxyoptions "github.com/kcp-dev/kcp/pkg/proxy/options"
bootstrap "github.com/kcp-dev/kcp/pkg/server/bootstrap"
"github.com/kcp-dev/kcp/pkg/server/bootstrap"
)

type Config struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
rbacv1 "k8s.io/api/rbac/v1"

"github.com/kcp-dev/kcp/pkg/reconciler/cache/labelclusterrolebindings"
replicateclusterrole "github.com/kcp-dev/kcp/pkg/reconciler/tenancy/replicateclusterrole"
"github.com/kcp-dev/kcp/pkg/reconciler/tenancy/replicateclusterrole"
"github.com/kcp-dev/kcp/sdk/apis/tenancy"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
"github.com/kcp-dev/kcp/pkg/logging"
"github.com/kcp-dev/kcp/pkg/reconciler/committer"
"github.com/kcp-dev/kcp/pkg/reconciler/events"
tenancy "github.com/kcp-dev/kcp/sdk/apis/tenancy"
"github.com/kcp-dev/kcp/sdk/apis/tenancy"
tenancyv1alpha1 "github.com/kcp-dev/kcp/sdk/apis/tenancy/v1alpha1"
kcpclientset "github.com/kcp-dev/kcp/sdk/client/clientset/versioned/cluster"
tenancyv1alpha1client "github.com/kcp-dev/kcp/sdk/client/clientset/versioned/typed/tenancy/v1alpha1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"context"
"testing"

logicalcluster "github.com/kcp-dev/logicalcluster/v3"
"github.com/kcp-dev/logicalcluster/v3"
"github.com/stretchr/testify/require"

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand Down
2 changes: 1 addition & 1 deletion sdk/apis/core/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"

v1alpha1 "github.com/kcp-dev/kcp/sdk/apis/core/v1alpha1"
"github.com/kcp-dev/kcp/sdk/apis/core/v1alpha1"
)

// Install registers the API group and adds types to a scheme
Expand Down

0 comments on commit 7631545

Please sign in to comment.