3
0
Fork 0

fix: fix 'too-many-public-methods' for pylint

This commit is contained in:
Lance Edgar 2025-09-01 09:54:48 -05:00
parent 1fec99bc92
commit 282fc61e50
4 changed files with 3 additions and 4 deletions

View file

@ -31,4 +31,3 @@ disable=fixme,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-public-methods,

View file

@ -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.

View file

@ -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>`.

View file

@ -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.