3
0
Fork 0

fix: fix 'not-callable' for pylint

This commit is contained in:
Lance Edgar 2025-09-01 10:26:33 -05:00
parent ebd44c55f5
commit ab35847f23
2 changed files with 1 additions and 2 deletions

View file

@ -11,7 +11,6 @@ disable=fixme,
missing-function-docstring,
missing-module-docstring,
no-member,
not-callable,
protected-access,
redefined-outer-name,
simplifiable-if-expression,

View file

@ -378,7 +378,7 @@ class GridFilter: # pylint: disable=too-many-instance-attributes
raise VerbNotSupported(verb)
# invoke filter method
return func(data, value)
return func(data, value) # pylint: disable=not-callable
def filter_is_any(self, data, value): # pylint: disable=unused-argument
"""