Skip to content

Commit f6048a2

Browse files
committed
Fix pylint issues
1 parent 481fe82 commit f6048a2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Diff for: pylintrc

+4-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ disable=raw-checker-failed,
7373
unused-private-member,
7474
missing-timeout,
7575
unnecessary-dunder-call,
76-
use-dict-literal
76+
use-dict-literal,
77+
broad-exception-raised #TODO fix this in next release
7778

7879
# Enable the message, report, category or checker with the given id(s). You can
7980
# either give multiple identifier separated by comma (,) or put this option
@@ -506,5 +507,5 @@ valid-metaclass-classmethod-first-arg=cls
506507

507508
# Exceptions that will emit a warning when being caught. Defaults to
508509
# "BaseException, Exception".
509-
overgeneral-exceptions=BaseException,
510-
Exception
510+
overgeneral-exceptions=builtins.BaseException,
511+
builtins.Exception

0 commit comments

Comments
 (0)