Skip to content

Commit f924e89

Browse files
authored
Add explicit module names to pylintrc to support pylint >= 3.0
contributed by @algonell.
2 parents 74605a6 + b34b3b3 commit f924e89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pylintrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -424,6 +424,6 @@ valid-metaclass-classmethod-first-arg=mcs
424424

425425
# Exceptions that will emit a warning when being caught. Defaults to
426426
# "Exception"
427-
overgeneral-exceptions=StandardError,
428-
Exception,
429-
BaseException
427+
overgeneral-exceptions=builtins.StandardError,
428+
builtins.Exception,
429+
builtins.BaseException

0 commit comments

Comments
 (0)