Skip to content

Commit e0468db

Browse files
committed
whitespace
1 parent 665f552 commit e0468db

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

pkg/cmd/issue/list/list.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ func NewCmdList(f *cmdutil.Factory, runF func(*ListOptions) error) *cobra.Comman
8585
cmd.RegisterFlagCompletionFunc("state", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
8686
return []string{"open", "closed", "all"}, cobra.ShellCompDirectiveNoSpace
8787
})
88-
8988
cmd.Flags().IntVarP(&opts.LimitResults, "limit", "L", 30, "Maximum number of issues to fetch")
9089
cmd.Flags().StringVarP(&opts.Author, "author", "A", "", "Filter by author")
9190
cmd.Flags().StringVar(&opts.Mention, "mention", "", "Filter by mention")

pkg/cmd/pr/list/list.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ func NewCmdList(f *cmdutil.Factory, runF func(*ListOptions) error) *cobra.Comman
8787
cmd.RegisterFlagCompletionFunc("state", func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
8888
return []string{"open", "closed", "merged", "all"}, cobra.ShellCompDirectiveNoSpace
8989
})
90-
9190
cmd.Flags().StringVarP(&opts.BaseBranch, "base", "B", "", "Filter by base branch")
9291
cmd.Flags().StringSliceVarP(&opts.Labels, "label", "l", nil, "Filter by labels")
9392
cmd.Flags().StringVarP(&opts.Author, "author", "A", "", "Filter by author")

0 commit comments

Comments
 (0)