continue-in-finally (PLE0116)
Added in v0.0.257 · Related issues · View source
Derived from the Pylint linter.
What it does
Checks for continue statements inside finally
Why is this bad?
continue statements were not allowed within finally clauses prior to
Python 3.8. Using a continue statement within a finally clause can
cause a SyntaxError.
Example
Use instead: