diff --git a/.pylintrc b/.pylintrc index 268f7c9..9bdd74c 100644 --- a/.pylintrc +++ b/.pylintrc @@ -31,4 +31,3 @@ disable=fixme, too-many-locals, too-many-nested-blocks, too-many-positional-arguments, - too-many-public-methods, diff --git a/src/wuttaweb/forms/base.py b/src/wuttaweb/forms/base.py index f4dcd9b..020da89 100644 --- a/src/wuttaweb/forms/base.py +++ b/src/wuttaweb/forms/base.py @@ -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. diff --git a/src/wuttaweb/grids/base.py b/src/wuttaweb/grids/base.py index 7886401..10e3b4b 100644 --- a/src/wuttaweb/grids/base.py +++ b/src/wuttaweb/grids/base.py @@ -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 `. diff --git a/src/wuttaweb/views/master.py b/src/wuttaweb/views/master.py index a356534..6f09793 100644 --- a/src/wuttaweb/views/master.py +++ b/src/wuttaweb/views/master.py @@ -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.