Python Mark Function como sem retorno

from typing import NoReturn

def stop() -> NoReturn:
    raise RuntimeError('no way')
Yossimal