Skip to content

Commit

Permalink
style: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienaury committed Mar 22, 2024
1 parent 699f5f7 commit fba49d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/infra/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (b Backend) Close() error {
}

func NewBackend(path string) (Backend, error) {
database, err := pebble.Open(path, &pebble.Options{})
database, err := pebble.Open(path, &pebble.Options{}) //nolint:exhaustruct
if err != nil {
return Backend{}, fmt.Errorf("unable to open database %v : %w", path, err)
}
Expand Down

0 comments on commit fba49d5

Please sign in to comment.