3
0
Fork 0

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

This commit is contained in:
Lance Edgar 2025-08-30 20:53:49 -05:00
parent f34678b305
commit 03913a92fd
5 changed files with 4 additions and 5 deletions

View file

@ -11,4 +11,3 @@ disable=
too-many-lines, too-many-lines,
too-many-locals, too-many-locals,
too-many-positional-arguments, too-many-positional-arguments,
too-many-public-methods,

View file

@ -40,7 +40,7 @@ from wuttjamaican.util import (load_entry_points, load_object,
log = logging.getLogger(__name__) log = logging.getLogger(__name__)
class AppHandler: class AppHandler: # pylint: disable=too-many-public-methods
""" """
Base class and default implementation for top-level :term:`app Base class and default implementation for top-level :term:`app
handler`. handler`.

View file

@ -42,7 +42,7 @@ else:
class AuthHandler(GenericHandler): class AuthHandler(GenericHandler): # pylint: disable=too-many-public-methods
""" """
Base class and default implementation for the :term:`auth Base class and default implementation for the :term:`auth
handler`. handler`.

View file

@ -31,7 +31,7 @@ import shutil
from wuttjamaican.app import GenericHandler from wuttjamaican.app import GenericHandler
class BatchHandler(GenericHandler): class BatchHandler(GenericHandler): # pylint: disable=too-many-public-methods
""" """
Base class and *partial* default implementation for :term:`batch Base class and *partial* default implementation for :term:`batch
handlers <batch handler>`. handlers <batch handler>`.

View file

@ -252,7 +252,7 @@ class Message:
return msg.as_string() return msg.as_string()
class EmailHandler(GenericHandler): class EmailHandler(GenericHandler): # pylint: disable=too-many-public-methods
""" """
Base class and default implementation for the :term:`email Base class and default implementation for the :term:`email
handler`. handler`.