Update overgeneral-exceptions

Fixes deprecation warning:

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.BaseException' ?) instead.
This commit is contained in:
Zedifus 2023-06-18 15:36:49 +01:00
parent fda691ecac
commit c303ca4012
1 changed files with 2 additions and 2 deletions

View File

@ -606,5 +606,5 @@ preferred-modules=
# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
overgeneral-exceptions=builtins.BaseException,
builtins.Exception