From b3a6c9ebe1c928bc61fa99750c2855fc65ac3603 Mon Sep 17 00:00:00 2001
From: Rafael Guterres Jeffman <rjeffman@redhat.com>
Date: Thu, 29 Apr 2021 18:01:02 -0300
Subject: [PATCH] Disable pylint `broad-except` warning.

This should be enabled in the future, but currently, nearly all
modules rely on `Exception`, and the changes would be too invasive.
---
 setup.cfg | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup.cfg b/setup.cfg
index aa6ed6c0..cddb81dc 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -37,7 +37,8 @@ disable =
     missing-class-docstring,
     missing-function-docstring,
     wrong-import-position,
-    duplicate-code
+    duplicate-code,
+    broad-except
 
 [pylint.BASIC]
 good-names = ex, i, j, k, Run, _, e, x, dn, cn, ip, os, unicode
-- 
GitLab