Fungsi tanda python sebagai tidak ada pengembalian

from typing import NoReturn

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