def assert_not_none()

in spotify_tensorflow/tfx/utils.py [0:0]


def assert_not_none(arg):
    # type: (Any) -> None
    if arg is None:
        raise TypeError("Argument can't be a None")