fix: fix 'too-many-instance-attributes' for pylint
This commit is contained in:
parent
242d17146d
commit
ffd82eb611
3 changed files with 2 additions and 3 deletions
|
@ -7,6 +7,5 @@ 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-locals,
|
too-many-locals,
|
||||||
too-many-positional-arguments,
|
too-many-positional-arguments,
|
||||||
|
|
|
@ -43,7 +43,7 @@ from wuttjamaican.exc import ConfigurationError
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
class WuttaConfig:
|
class WuttaConfig: # pylint: disable=too-many-instance-attributes
|
||||||
"""
|
"""
|
||||||
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:
|
class Message: # pylint: disable=too-many-instance-attributes
|
||||||
"""
|
"""
|
||||||
Represents an email message to be sent.
|
Represents an email message to be sent.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue