Skip to content

Commit

Permalink
lint: remove unused context param
Browse files Browse the repository at this point in the history
  • Loading branch information
joelrebel committed Aug 15, 2024
1 parent 0051b2e commit f707d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/supermicro/supermicro.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ func (s *supermicro) ListAvailableUpdates(context.Context, *model.UpdateOptions)

// UpdateRequirements returns requirements to be met before and after a firmware install,
// the caller may use the information to determine if a powercycle, reconfiguration or other actions are required on the component.
func (s *supermicro) UpdateRequirements(ctx context.Context, componentSlug, componentVendor, componentModel string) (model.UpdateRequirements, error) {
func (s *supermicro) UpdateRequirements(_ context.Context, componentSlug, componentVendor, componentModel string) (model.UpdateRequirements, error) {
return actions.UpdateRequirements(componentSlug, componentVendor, componentModel)
}

Expand Down

0 comments on commit f707d24

Please sign in to comment.