From 9242d9a9d572d9d9d2f8fa09eed6f704b4331673 Mon Sep 17 00:00:00 2001 From: pmahindrakar-oss Date: Fri, 19 May 2023 12:29:00 -0700 Subject: [PATCH] sort imports Signed-off-by: pmahindrakar-oss --- pkg/repositories/transformers/task_execution.go | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/pkg/repositories/transformers/task_execution.go b/pkg/repositories/transformers/task_execution.go index 36484b83b..f57f4b6b3 100644 --- a/pkg/repositories/transformers/task_execution.go +++ b/pkg/repositories/transformers/task_execution.go @@ -5,25 +5,22 @@ import ( "sort" "strconv" - "github.com/flyteorg/flyteadmin/pkg/runtime/interfaces" - "github.com/flyteorg/flytestdlib/storage" - - "google.golang.org/protobuf/encoding/protojson" - jsonpatch "github.com/evanphx/json-patch" "github.com/golang/protobuf/proto" "github.com/golang/protobuf/ptypes" _struct "github.com/golang/protobuf/ptypes/struct" + "google.golang.org/grpc/codes" + "google.golang.org/protobuf/encoding/protojson" "github.com/flyteorg/flyteadmin/pkg/common" "github.com/flyteorg/flyteadmin/pkg/errors" "github.com/flyteorg/flyteadmin/pkg/repositories/models" + "github.com/flyteorg/flyteadmin/pkg/runtime/interfaces" "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/admin" "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/core" "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/event" "github.com/flyteorg/flytestdlib/logger" - - "google.golang.org/grpc/codes" + "github.com/flyteorg/flytestdlib/storage" ) var empty _struct.Struct