From 9ed7b0c761a3e2473f0c72686ed75d896c0baa80 Mon Sep 17 00:00:00 2001 From: Mathis Kelm <mathis.kelm@iws.uni-stuttgart.de> Date: Thu, 2 Feb 2023 17:58:58 +0100 Subject: [PATCH] [ci] Use new specification of exceptions in pylint config --- .pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index b829a315cb..eed36af065 100644 --- a/.pylintrc +++ b/.pylintrc @@ -557,5 +557,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 -- GitLab