From bf5e65dd24dcbd7fa50c75a9021c21802ddbc487 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 20 Mar 2023 14:27:26 +0100 Subject: [PATCH] pylint: hide broad-exception-caught and broad-exception-raised I suppose it would be nice to have these enabled, but yeah... --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index dd76d7c6..d351e8e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,6 +52,8 @@ confidence = ["HIGH", "INFERENCE"] # TODO many of these could be fixed if someone wants to spend the time disable = [ + "broad-exception-caught", + "broad-exception-raised", "consider-iterating-dictionary", "consider-using-sys-exit", "invalid-name",