fix: fix 'too-many-public-methods' for pylint
This commit is contained in:
parent
f34678b305
commit
03913a92fd
5 changed files with 4 additions and 5 deletions
|
@ -11,4 +11,3 @@ disable=
|
|||
too-many-lines,
|
||||
too-many-locals,
|
||||
too-many-positional-arguments,
|
||||
too-many-public-methods,
|
||||
|
|
|
@ -40,7 +40,7 @@ from wuttjamaican.util import (load_entry_points, load_object,
|
|||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class AppHandler:
|
||||
class AppHandler: # pylint: disable=too-many-public-methods
|
||||
"""
|
||||
Base class and default implementation for top-level :term:`app
|
||||
handler`.
|
||||
|
|
|
@ -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
|
||||
handler`.
|
||||
|
|
|
@ -31,7 +31,7 @@ import shutil
|
|||
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
|
||||
handlers <batch handler>`.
|
||||
|
|
|
@ -252,7 +252,7 @@ class Message:
|
|||
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
|
||||
handler`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue