From 33801a3491fa27d2486b6a989db7962759b7544b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cosmin=20=C8=98tefan=20Ciocan?= <57830279+cosminc98@users.noreply.github.com> Date: Sat, 27 Jan 2024 01:42:17 +0000 Subject: [PATCH] Update pylint exceptions --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 71966ef..2bc6d1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -286,6 +286,6 @@ deprecated-modules="optparse,tkinter.tix" [tool.pylint.'EXCEPTIONS'] overgeneral-exceptions= [ - "BaseException", - "Exception" + "builtins.BaseException", + "builtins.Exception" ]