From 0a05710ab18fde0a2a1d399241de8ae6463a5199 Mon Sep 17 00:00:00 2001 From: Izaak Lauer <8404559+izaaklauer@users.noreply.github.com> Date: Fri, 4 Jun 2021 12:06:01 -0400 Subject: [PATCH] Fixing import order --- internal/cli/deployment_list.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/internal/cli/deployment_list.go b/internal/cli/deployment_list.go index c8c6472cad3..4392bd18c70 100644 --- a/internal/cli/deployment_list.go +++ b/internal/cli/deployment_list.go @@ -10,15 +10,16 @@ import ( "github.com/dustin/go-humanize" "github.com/golang/protobuf/ptypes" + "github.com/posener/complete" + "google.golang.org/grpc/codes" + "google.golang.org/grpc/status" + "github.com/hashicorp/waypoint-plugin-sdk/terminal" clientpkg "github.com/hashicorp/waypoint/internal/client" "github.com/hashicorp/waypoint/internal/clierrors" "github.com/hashicorp/waypoint/internal/pkg/flag" pb "github.com/hashicorp/waypoint/internal/server/gen" serversort "github.com/hashicorp/waypoint/internal/server/sort" - "github.com/posener/complete" - "google.golang.org/grpc/codes" - "google.golang.org/grpc/status" ) type DeploymentListCommand struct {