From 3c593f5fdc05a19e4dd2c96dc81a66868d1b0da9 Mon Sep 17 00:00:00 2001 From: Florian Baumann Date: Fri, 17 Oct 2025 11:30:08 +0200 Subject: [PATCH] Remove unused unique flag from removeInteractive --- pkg/serra/remove.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/serra/remove.go b/pkg/serra/remove.go index a2bdbe0..90afacd 100644 --- a/pkg/serra/remove.go +++ b/pkg/serra/remove.go @@ -26,7 +26,7 @@ var removeCmd = &cobra.Command{ RunE: func(cmd *cobra.Command, cards []string) error { if interactive { - removeCardsInteractive(unique, set) + removeCardsInteractive(set) } else { removeCards(cards, count) } @@ -34,7 +34,7 @@ var removeCmd = &cobra.Command{ }, } -func removeCardsInteractive(unique bool, set string) { +func removeCardsInteractive(set string) { l := Logger() if len(set) == 0 {