Skip to content

Commit

Permalink
GO-4000: Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
deff7 committed Aug 30, 2024
1 parent a8d5b51 commit 44cf10d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/lib/database/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -597,12 +597,12 @@ func (l FilterAllIn) AnystoreFilter() query.Filter {
return query.And(conds)
}

func newFilterOptionsEqual(arena *fastjson.Arena, key string, value *types.ListValue, Options map[string]string) *FilterOptionsEqual {
func newFilterOptionsEqual(arena *fastjson.Arena, key string, value *types.ListValue, options map[string]string) *FilterOptionsEqual {
f := &FilterOptionsEqual{
arena: arena,
Key: key,
Value: value,
Options: Options,
Options: options,
}
f.compileValueFilter()
return f
Expand Down

0 comments on commit 44cf10d

Please sign in to comment.