Skip to content

Commit 6521bb4

Browse files
committed
lint fix
1 parent a1a01c4 commit 6521bb4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

flyteplugins/go/tasks/pluginmachinery/catalog/client.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import (
55
"fmt"
66
"time"
77

8+
"google.golang.org/grpc/codes"
9+
grpcStatus "google.golang.org/grpc/status"
810
"google.golang.org/protobuf/types/known/durationpb"
911

1012
"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/core"
1113
"github.com/flyteorg/flyte/flyteidl/gen/pb-go/flyteidl/datacatalog"
1214
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/io"
13-
"google.golang.org/grpc/codes"
14-
grpcStatus "google.golang.org/grpc/status"
1515
)
1616

1717
//go:generate mockery --all --case=underscore --with-expecter

flytepropeller/pkg/controller/nodes/catalog/datacatalog/datacatalog_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ import (
66
"testing"
77
"time"
88

9+
"github.com/golang/protobuf/proto"
10+
"github.com/golang/protobuf/ptypes"
11+
"github.com/google/uuid"
12+
"github.com/pkg/errors"
13+
"github.com/stretchr/testify/assert"
14+
"github.com/stretchr/testify/mock"
15+
"google.golang.org/grpc/codes"
16+
"google.golang.org/grpc/status"
917
"google.golang.org/protobuf/types/known/durationpb"
1018

1119
"github.com/flyteorg/flyte/flyteidl/clients/go/datacatalog/mocks"
@@ -16,14 +24,6 @@ import (
1624
"github.com/flyteorg/flyte/flyteplugins/go/tasks/pluginmachinery/ioutils"
1725
"github.com/flyteorg/flyte/flytestdlib/contextutils"
1826
"github.com/flyteorg/flyte/flytestdlib/promutils/labeled"
19-
"github.com/golang/protobuf/proto"
20-
"github.com/golang/protobuf/ptypes"
21-
"github.com/google/uuid"
22-
"github.com/pkg/errors"
23-
"github.com/stretchr/testify/assert"
24-
"github.com/stretchr/testify/mock"
25-
"google.golang.org/grpc/codes"
26-
"google.golang.org/grpc/status"
2727
)
2828

2929
func init() {

0 commit comments

Comments
 (0)