#3720·pyrefly

detect unreachable `except` blocks

Author: DetachHeadCreated Jun 9, 2026Updated Sep 22, 2026
Labelstypechecking
python
try:
    ...
except BaseException:
    ...
except Exception: # unreachable
    ...

pyright has a rule for this: reportUnusedExcept but maybe it makes sense for this under the existing unreachable code