From 80dc17778ea71d2e6e825d2c186c7124955eed19 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Wed, 9 Oct 2019 11:54:37 -0700 Subject: [PATCH] Use correct package name --- command/pr.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/command/pr.go b/command/pr.go index 9522b2a75..4b9c02732 100644 --- a/command/pr.go +++ b/command/pr.go @@ -4,8 +4,6 @@ import ( "fmt" "github.com/github/gh-cli/api" - "github.com/github/gh-cli/graphql" - "github.com/spf13/cobra" ) @@ -34,7 +32,7 @@ var prListCmd = &cobra.Command{ } func ExecutePr() { - prPayload, err := graphql.PullRequests() + prPayload, err := api.PullRequests() if err != nil { panic(err) }