Skip to content

Commit e9c7c75

Browse files
authored
Allow broad exceptions in pylint (#3685)
Fixes #3671
1 parent fc9368f commit e9c7c75

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.pylintrc

+1-7
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ disable=missing-docstring,
7676
unused-argument, # temp-pylint-upgrade
7777
redefined-builtin,
7878
cyclic-import,
79+
broad-exception-raised,
7980

8081
# Enable the message, report, category or checker with the given id(s). You can
8182
# either give multiple identifier separated by comma (,) or put this option
@@ -480,10 +481,3 @@ max-statements=50
480481

481482
# Minimum number of public methods for a class (see R0903).
482483
min-public-methods=2
483-
484-
485-
[EXCEPTIONS]
486-
487-
# Exceptions that will emit a warning when being caught. Defaults to
488-
# "Exception".
489-
overgeneral-exceptions=Exception

0 commit comments

Comments
 (0)