Add explicit module names to pylintrc to support pylint >= 3.0

contributed by @algonell.
pull/759/head
Gregory P. Smith 2023-02-02 15:20:26 -08:00 committed by GitHub
commit f924e89a56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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
overgeneral-exceptions=builtins.StandardError,
builtins.Exception,
builtins.BaseException