From 7536475b94b4990725c8628cf0219cd6d76a11ed Mon Sep 17 00:00:00 2001 From: deadly-panda Date: Mon, 13 Feb 2023 13:25:40 +0100 Subject: [PATCH] Exceptions without module name in pylint conf is deprecated. --- .pylintrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pylintrc b/.pylintrc index 98d20bd..888ef22 100644 --- a/.pylintrc +++ b/.pylintrc @@ -424,6 +424,6 @@ valid-metaclass-classmethod-first-arg=mcs # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=StandardError, - Exception, - BaseException \ No newline at end of file +overgeneral-exceptions=builtins.StandardError, + builtins.Exception, + builtins.BaseException \ No newline at end of file