fix: fix 'too-many-public-methods' for pylint
This commit is contained in:
parent
1fec99bc92
commit
282fc61e50
4 changed files with 3 additions and 4 deletions
|
@ -31,4 +31,3 @@ disable=fixme,
|
|||
too-many-locals,
|
||||
too-many-nested-blocks,
|
||||
too-many-positional-arguments,
|
||||
too-many-public-methods,
|
||||
|
|
|
@ -42,7 +42,7 @@ from wuttaweb.util import FieldList, get_form_data, get_model_fields, make_json_
|
|||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class Form: # pylint: disable=too-many-instance-attributes
|
||||
class Form: # pylint: disable=too-many-instance-attributes,too-many-public-methods
|
||||
"""
|
||||
Base class for all forms.
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@ Elements of :attr:`~Grid.sort_defaults` will be of this type.
|
|||
"""
|
||||
|
||||
|
||||
class Grid: # pylint: disable=too-many-instance-attributes
|
||||
class Grid: # pylint: disable=too-many-instance-attributes,too-many-public-methods
|
||||
"""
|
||||
Base class for all :term:`grids <grid>`.
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ from wuttaweb.progress import SessionProgress
|
|||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class MasterView(View):
|
||||
class MasterView(View): # pylint: disable=too-many-public-methods
|
||||
"""
|
||||
Base class for "master" views.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue