3
0
Fork 0

Compare commits

..

No commits in common. "ffd82eb61195212c45d11ad806f4b696d51fb8e2" and "f34678b30518201360fbeab9753a2bbae2e5dc59" have entirely different histories.

6 changed files with 9 additions and 8 deletions

View file

@ -7,5 +7,8 @@ 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,7 +23,6 @@
"""
WuttJamaican - app handler
"""
# pylint: disable=too-many-lines
import importlib
import logging
@ -41,7 +40,7 @@ from wuttjamaican.util import (load_entry_points, load_object,
log = logging.getLogger(__name__)
class AppHandler: # pylint: disable=too-many-public-methods
class AppHandler:
"""
Base class and default implementation for top-level :term:`app
handler`.

View file

@ -42,7 +42,7 @@ else:
class AuthHandler(GenericHandler): # pylint: disable=too-many-public-methods
class AuthHandler(GenericHandler):
"""
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): # pylint: disable=too-many-public-methods
class BatchHandler(GenericHandler):
"""
Base class and *partial* default implementation for :term:`batch
handlers <batch handler>`.

View file

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

View file

@ -109,7 +109,7 @@ class EmailSetting: # pylint: disable=too-few-public-methods
return {}
class Message: # pylint: disable=too-many-instance-attributes
class Message:
"""
Represents an email message to be sent.
@ -252,7 +252,7 @@ class Message: # pylint: disable=too-many-instance-attributes
return msg.as_string()
class EmailHandler(GenericHandler): # pylint: disable=too-many-public-methods
class EmailHandler(GenericHandler):
"""
Base class and default implementation for the :term:`email
handler`.