From 8597a4cd033178ca438cea2b37b6f702160bfb17 Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Mon, 5 Feb 2024 22:54:41 +0100 Subject: [PATCH] Fix for pylint UserWarning on deprecated configuration (#807) Co-authored-by: Kevin Tian --- .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