Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flimzy committed Mar 1, 2024
1 parent 045d117 commit bd45947
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/sqlite/deleteattachment.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"github.com/go-kivik/kivik/v4/internal"
)

func (d *db) DeleteAttachment(ctx context.Context, docID, filename string, options driver.Options) (string, error) {
func (d *db) DeleteAttachment(ctx context.Context, docID, _ string, options driver.Options) (string, error) {
opts := newOpts(options)
if rev := opts.rev(); rev == "" {
return "", &internal.Error{Status: http.StatusConflict, Message: "conflict"}
Expand Down

0 comments on commit bd45947

Please sign in to comment.