Compare commits
No commits in common. "ffd82eb61195212c45d11ad806f4b696d51fb8e2" and "f34678b30518201360fbeab9753a2bbae2e5dc59" have entirely different histories.
ffd82eb611
...
f34678b305
6 changed files with 9 additions and 8 deletions
|
@ -7,5 +7,8 @@ disable=
|
||||||
import-outside-toplevel,
|
import-outside-toplevel,
|
||||||
too-many-arguments,
|
too-many-arguments,
|
||||||
too-many-branches,
|
too-many-branches,
|
||||||
|
too-many-instance-attributes,
|
||||||
|
too-many-lines,
|
||||||
too-many-locals,
|
too-many-locals,
|
||||||
too-many-positional-arguments,
|
too-many-positional-arguments,
|
||||||
|
too-many-public-methods,
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
"""
|
"""
|
||||||
WuttJamaican - app handler
|
WuttJamaican - app handler
|
||||||
"""
|
"""
|
||||||
# pylint: disable=too-many-lines
|
|
||||||
|
|
||||||
import importlib
|
import importlib
|
||||||
import logging
|
import logging
|
||||||
|
@ -41,7 +40,7 @@ from wuttjamaican.util import (load_entry_points, load_object,
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class AppHandler: # pylint: disable=too-many-public-methods
|
class AppHandler:
|
||||||
"""
|
"""
|
||||||
Base class and default implementation for top-level :term:`app
|
Base class and default implementation for top-level :term:`app
|
||||||
handler`.
|
handler`.
|
||||||
|
|
|
@ -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
|
Base class and default implementation for the :term:`auth
|
||||||
handler`.
|
handler`.
|
||||||
|
|
|
@ -31,7 +31,7 @@ import shutil
|
||||||
from wuttjamaican.app import GenericHandler
|
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
|
Base class and *partial* default implementation for :term:`batch
|
||||||
handlers <batch handler>`.
|
handlers <batch handler>`.
|
||||||
|
|
|
@ -23,7 +23,6 @@
|
||||||
"""
|
"""
|
||||||
WuttJamaican - app configuration
|
WuttJamaican - app configuration
|
||||||
"""
|
"""
|
||||||
# pylint: disable=too-many-lines
|
|
||||||
|
|
||||||
import configparser
|
import configparser
|
||||||
import logging
|
import logging
|
||||||
|
@ -43,7 +42,7 @@ from wuttjamaican.exc import ConfigurationError
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class WuttaConfig: # pylint: disable=too-many-instance-attributes
|
class WuttaConfig:
|
||||||
"""
|
"""
|
||||||
Configuration class for Wutta Framework
|
Configuration class for Wutta Framework
|
||||||
|
|
||||||
|
|
|
@ -109,7 +109,7 @@ class EmailSetting: # pylint: disable=too-few-public-methods
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
|
|
||||||
class Message: # pylint: disable=too-many-instance-attributes
|
class Message:
|
||||||
"""
|
"""
|
||||||
Represents an email message to be sent.
|
Represents an email message to be sent.
|
||||||
|
|
||||||
|
@ -252,7 +252,7 @@ class Message: # pylint: disable=too-many-instance-attributes
|
||||||
return msg.as_string()
|
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
|
Base class and default implementation for the :term:`email
|
||||||
handler`.
|
handler`.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue