anki/pylib/anki/types.py

6 lines
147 B
Python

from typing import NoReturn
def assert_exhaustive(arg: NoReturn) -> NoReturn:
raise Exception(f"unexpected arg received: {type(arg)} {arg}")