From 037ce2261512ddd7761e9e3f715220c8d6e8d032 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 17 Jun 2024 16:45:27 -0400 Subject: [PATCH] pylint: Ignore one more error type Now I get a green run with `tox -e lint`. Signed-off-by: Russell Bryant --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 594b8d28..478d5256 100644 --- a/.pylintrc +++ b/.pylintrc @@ -471,7 +471,8 @@ disable=raw-checker-failed, logging-fstring-interpolation, dangerous-default-value, consider-using-generator, - broad-exception-caught + broad-exception-caught, + super-init-not-called # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option