Skip to content

Commit

Permalink
Removed unused linter tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mrz1836 committed Oct 27, 2023
1 parent 07f126b commit 20f9019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion where.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ func whereObject(engine Engine, k string, v interface{}) string {
if len(queryParts) == 0 {
return ""
}
query := queryParts[0] //nolint:gosec // ignore for now
query := queryParts[0]
if len(queryParts) > 1 {
query = "(" + strings.Join(queryParts, " AND ") + ")"
}
Expand Down

0 comments on commit 20f9019

Please sign in to comment.