Skip to content

Commit

Permalink
Add nolint:lll for one function
Browse files Browse the repository at this point in the history
  • Loading branch information
christhemorse committed Jun 5, 2024
1 parent 824a466 commit dbfcce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inference.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (d *InferenceServiceHandler) List(ctx context.Context) ([]Inference, *http.
}

// Create will create the Serverless Inference subscription with the given parameters
func (d *InferenceServiceHandler) Create(ctx context.Context, inferenceReq *InferenceCreateUpdateReq) (*Inference, *http.Response, error) {
func (d *InferenceServiceHandler) Create(ctx context.Context, inferenceReq *InferenceCreateUpdateReq) (*Inference, *http.Response, error) { //nolint:lll
req, err := d.client.NewRequest(ctx, http.MethodPost, inferencePath, inferenceReq)
if err != nil {
return nil, nil, err
Expand Down

0 comments on commit dbfcce5

Please sign in to comment.