.. _return-in-finally: return-in-finally / W0134 ========================= **Message emitted:** ``'return' shadowed by the 'finally' clause.`` **Description:** *Emitted when a 'return' statement is found in a 'finally' block. This will overwrite the return value of a function and should be avoided.* **Problematic code:** .. literalinclude:: /data/messages/r/return-in-finally/bad.py :language: python **Correct code:** .. literalinclude:: /data/messages/r/return-in-finally/good.py :language: python **Related links:** - `Python 3 docs 'finally' clause `_ Created by the `basic `__ checker.