From b317fb09f6e2eb820258fd79a54332c1d90b0a9a Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Fri, 2 Feb 2024 16:49:21 +0100 Subject: [PATCH] Fix for pylint UserWarning on deprecated configuration --- .pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 246484eb3..72d46e1c9 100644 --- a/.pylintrc +++ b/.pylintrc @@ -548,5 +548,5 @@ min-public-methods=2 # Exceptions that will emit a warning when being caught. Defaults to # "BaseException, Exception". -overgeneral-exceptions=BaseException, - Exception +overgeneral-exceptions=builtins.BaseException, + builtins.Exception