fix: fix 'too-few-public-methods' for pylint
This commit is contained in:
parent
d7eacf0f52
commit
d01c343a7c
2 changed files with 1 additions and 2 deletions
|
@ -25,6 +25,5 @@ disable=fixme,
|
|||
simplifiable-if-expression,
|
||||
singleton-comparison,
|
||||
super-init-not-called,
|
||||
too-few-public-methods,
|
||||
too-many-locals,
|
||||
too-many-nested-blocks,
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
from wuttjamaican.email import EmailSetting
|
||||
|
||||
|
||||
class feedback(EmailSetting): # pylint: disable=invalid-name
|
||||
class feedback(EmailSetting): # pylint: disable=invalid-name,too-few-public-methods
|
||||
"""
|
||||
Sent when user submits feedback via the web app.
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue