Commit 753ba0b1 authored by Antoine Kaufmann's avatar Antoine Kaufmann Committed by Antoine Kaufmann
Browse files

lint: update pylint config with qualified exception names

This avoids the following warning printed many times:

  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.
parent 29928929
...@@ -439,6 +439,6 @@ valid-metaclass-classmethod-first-arg=mcs ...@@ -439,6 +439,6 @@ valid-metaclass-classmethod-first-arg=mcs
# Exceptions that will emit a warning when being caught. Defaults to # Exceptions that will emit a warning when being caught. Defaults to
# "Exception" # "Exception"
overgeneral-exceptions=StandardError, overgeneral-exceptions=builtins.StandardError,
Exception, builtins.Exception,
BaseException builtins.BaseException
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment