Skip to content

Commit

Permalink
Fix PyLint overgeneral-exceptions warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian_kraetzig committed Feb 8, 2023
1 parent 997d93d commit f1b2e82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,6 @@ valid-metaclass-classmethod-first-arg=cls
[EXCEPTIONS]

# Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception".
overgeneral-exceptions=BaseException,
Exception
# "builtins.BaseException, builtins.Exception".
overgeneral-exceptions=builtins.BaseException,
builtins.Exception

0 comments on commit f1b2e82

Please sign in to comment.