Skip to content

Commit

Permalink
Merge pull request #51 from Sebi94nbg/Fix-PyLint-overgeneral-exceptio…
Browse files Browse the repository at this point in the history
…ns-warning

Fix PyLint `overgeneral-exceptions` warning
  • Loading branch information
Sebbo94BY authored Feb 8, 2023
2 parents 9d1cc3c + f1b2e82 commit 5332caa
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 5332caa

Please sign in to comment.