fix: fix 'super-init-not-called' for pylint
This commit is contained in:
parent
2bcdeb42cd
commit
2624f9dce8
2 changed files with 1 additions and 2 deletions
|
@ -11,6 +11,5 @@ disable=fixme,
|
||||||
missing-function-docstring,
|
missing-function-docstring,
|
||||||
missing-module-docstring,
|
missing-module-docstring,
|
||||||
no-member,
|
no-member,
|
||||||
super-init-not-called,
|
|
||||||
too-many-locals,
|
too-many-locals,
|
||||||
too-many-nested-blocks,
|
too-many-nested-blocks,
|
||||||
|
|
|
@ -91,7 +91,7 @@ class SessionProgress(ProgressBase): # pylint: disable=too-many-instance-attrib
|
||||||
:attr:`success_url`.
|
:attr:`success_url`.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__( # pylint: disable=too-many-arguments,too-many-positional-arguments
|
def __init__( # pylint: disable=too-many-arguments,too-many-positional-arguments,super-init-not-called
|
||||||
self, request, key, success_msg=None, success_url=None, error_url=None
|
self, request, key, success_msg=None, success_url=None, error_url=None
|
||||||
):
|
):
|
||||||
self.request = request
|
self.request = request
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue