Skip to content

Commit

Permalink
Clearly state unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ofaurax committed Feb 3, 2025
1 parent c5db18d commit 7caf216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/list/firmware_set.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ var flags *listFirmwareSetFlags
// var flagsDefinedListFwSet *listFirmwareSetFlags

//nolint:err113 // brevity is best here
func sendListFirmwareRequest(client *fleetdbapi.Client, cmd *cobra.Command) ([]fleetdbapi.ComponentFirmwareSet, error) {
func sendListFirmwareRequest(client *fleetdbapi.Client, _ *cobra.Command) ([]fleetdbapi.ComponentFirmwareSet, error) {
params := &fleetdbapi.ComponentFirmwareSetListParams{
Vendor: strings.TrimSpace(flags.vendor),
Model: strings.TrimSpace(flags.model),
Expand Down

0 comments on commit 7caf216

Please sign in to comment.