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-module-docstring,
|
||||
no-member,
|
||||
not-callable,
|
||||
protected-access,
|
||||
redefined-outer-name,
|
||||
simplifiable-if-expression,
|
||||
|
|
|
@ -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
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue