Remove unused unique flag from removeInteractive

This commit is contained in:
Florian Baumann 2025-10-17 11:30:08 +02:00
parent 7d23bca7f1
commit 3c593f5fdc

View File

@ -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 {