From 9e7eb962272c879dbd419530e34dfae906f8ed46 Mon Sep 17 00:00:00 2001 From: viljarb0 <156418063+viljarb0@users.noreply.github.com> Date: Thu, 5 Feb 2026 17:41:40 +0100 Subject: [PATCH] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- pkg/cli/commands/delete.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/cli/commands/delete.go b/pkg/cli/commands/delete.go index 1792776..9c52d86 100644 --- a/pkg/cli/commands/delete.go +++ b/pkg/cli/commands/delete.go @@ -22,10 +22,6 @@ var deleteCmd = &cobra.Command{ func runDeleteCmd(cmd *cobra.Command, args []string) error { deleteID := strings.Join(args, " ") - if deleteID == "" { - return fmt.Errorf("issue ID cannot be empty") - } - issue := &models.Issue{ ID: deleteID, }