Merge "pylint: Skip two E1130 errors"

This commit is contained in:
Zuul 2024-07-01 23:31:36 +00:00 committed by Gerrit Code Review
commit 0f649dcedd

View File

@ -406,7 +406,7 @@ def condition_not_db_filter(model, field, value, auto_none=True):
If auto_none is True then we'll consider NULL values as different as well, If auto_none is True then we'll consider NULL values as different as well,
like we do in Python and not like SQL does. like we do in Python and not like SQL does.
""" """
result = ~condition_db_filter(model, field, value) result = ~condition_db_filter(model, field, value) # pylint: disable=E1130
if auto_none and ( if auto_none and (
( (
@ -789,7 +789,7 @@ def _clustered_bool_field_filter(query, field_name, filter_value):
), ),
) )
if not filter_value: if not filter_value:
query_filter = ~query_filter query_filter = ~query_filter # pylint: disable=E1130
query = query.filter(query_filter) query = query.filter(query_filter)
return query return query