From 2624f9dce8a842069e2ab339c055dd208956007b Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Mon, 1 Sep 2025 10:48:29 -0500 Subject: [PATCH] fix: fix 'super-init-not-called' for pylint --- .pylintrc | 1 - src/wuttaweb/progress.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 0c30195..0e698d1 100644 --- a/.pylintrc +++ b/.pylintrc @@ -11,6 +11,5 @@ disable=fixme, missing-function-docstring, missing-module-docstring, no-member, - super-init-not-called, too-many-locals, too-many-nested-blocks, diff --git a/src/wuttaweb/progress.py b/src/wuttaweb/progress.py index 2c41907..d09a057 100644 --- a/src/wuttaweb/progress.py +++ b/src/wuttaweb/progress.py @@ -91,7 +91,7 @@ class SessionProgress(ProgressBase): # pylint: disable=too-many-instance-attrib :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 = request