3
0
Fork 0

Compare commits

..

3 commits

6 changed files with 8 additions and 9 deletions

View file

@ -7,8 +7,5 @@ disable=
import-outside-toplevel,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-positional-arguments,
too-many-public-methods,

View file

@ -23,6 +23,7 @@
"""
WuttJamaican - app handler
"""
# pylint: disable=too-many-lines
import importlib
import logging
@ -40,7 +41,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`.

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

View file

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

View file

@ -23,6 +23,7 @@
"""
WuttJamaican - app configuration
"""
# pylint: disable=too-many-lines
import configparser
import logging
@ -42,7 +43,7 @@ from wuttjamaican.exc import ConfigurationError
log = logging.getLogger(__name__)
class WuttaConfig:
class WuttaConfig: # pylint: disable=too-many-instance-attributes
"""
Configuration class for Wutta Framework

View file

@ -109,7 +109,7 @@ class EmailSetting: # pylint: disable=too-few-public-methods
return {}
class Message:
class Message: # pylint: disable=too-many-instance-attributes
"""
Represents an email message to be sent.
@ -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`.