Skip to the content.

Type Hint for NoReturn

Recipes

from typing import NoReturn


def func(arg: int, arg2: str = 'a') -> NoReturn:
    raise ValueError

More Details