We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c60559 commit 7c2b415Copy full SHA for 7c2b415
1 file changed
lib/common/pylint_data/messages/bare-except/details.md
@@ -2,5 +2,5 @@ A good rule of thumb is to limit use of bare 'except' clauses to two
2
cases: 1. If the exception handler will be printing out or logging the
3
traceback; at least the user will be aware that an error has occurred.
4
2. If the code needs to do some cleanup work, but then lets the
5
-exception propagate upwards with raise. [try\...finally]{.title-ref} can
+exception propagate upwards with raise. [`try\...finally`](https://docs.python.org/3/reference/compound_stmts.html#finally-clause) can
6
be a better way to handle this case.
0 commit comments