From 69f5fe15624d4faf06d42c3e872a3b86ae0e9544 Mon Sep 17 00:00:00 2001 From: Demi Marie Obenour Date: Sat, 13 Jan 2024 22:14:35 -0500 Subject: [PATCH] Use fully-qualified exception names in .pylintrc This avoids a deprecation warning from pylint. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index cb085b3f..ce5735a9 100644 --- a/.pylintrc +++ b/.pylintrc @@ -368,4 +368,4 @@ exclude-protected=_asdict,_fields,_replace,_source,_make # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=Exception +overgeneral-exceptions=builtins.Exception,builtins.BaseException