TOC

def random_number_generator(arg1: int, arg2: str) -> int:
    """
    Summary line.

    Extended description of function. This typically
    spans several lines.

    Args:
        arg1: some text about the first argument
        arg2: what the second argument is about

    Returns:
        a randomly generated value

    """
    return 42