fix: fix 'not-callable' for pylint
This commit is contained in:
parent
ebd44c55f5
commit
ab35847f23
2 changed files with 1 additions and 2 deletions
|
@ -11,7 +11,6 @@ disable=fixme,
|
||||||
missing-function-docstring,
|
missing-function-docstring,
|
||||||
missing-module-docstring,
|
missing-module-docstring,
|
||||||
no-member,
|
no-member,
|
||||||
not-callable,
|
|
||||||
protected-access,
|
protected-access,
|
||||||
redefined-outer-name,
|
redefined-outer-name,
|
||||||
simplifiable-if-expression,
|
simplifiable-if-expression,
|
||||||
|
|
|
@ -378,7 +378,7 @@ class GridFilter: # pylint: disable=too-many-instance-attributes
|
||||||
raise VerbNotSupported(verb)
|
raise VerbNotSupported(verb)
|
||||||
|
|
||||||
# invoke filter method
|
# 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
|
def filter_is_any(self, data, value): # pylint: disable=unused-argument
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue