From fd4465aff042b6581e814a644e6badebcedcad78 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Tue, 26 Sep 2023 15:51:23 -0400 Subject: [PATCH] pylint config: builtins.Exception (#16410) https://github.com/Chia-Network/chia-blockchain/actions/runs/6293301638/job/17086464327?pr=16407#step:8:13 ``` pylint: Command line or configuration file:1: UserWarning: Specifying exception names in the overgeneral-exceptions option without module name is deprecated and support for it will be removed in pylint 3.0. Use fully qualified name (maybe 'builtins.Exception' ?) instead. ``` --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index b7d30d473e..b1b24dace4 100644 --- a/pylintrc +++ b/pylintrc @@ -488,4 +488,4 @@ valid-metaclass-classmethod-first-arg=mcs # Exceptions that will emit a warning when being caught. Defaults to # "Exception" -overgeneral-exceptions=Exception +overgeneral-exceptions=builtins.Exception