LINE_LENGTH: 55

**********
def function_with_variadics():
    """
    Args:
        arg1 (str): Something short
        **kwargs: Keyword args that should remain on their own entry.
        *custom_args: Positional extras that should wrap to their own block even without a type hint.
        **some_other_strange_name: Keyword extras that likewise need wrapping to stay with their entry.
        *explicit_typed_args (tuple[int, ...]): Shows a variadic entry that still provides a type annotation.
        **typed_kwargs (dict[str, int]): Another variadic keyword argument that uses a type hint.
    """
    return (
        arg1,
        kwargs,
        custom_args,
        some_other_strange_name,
        explicit_typed_args,
        typed_kwargs,
    )

**********
def function_with_variadics():
    """
    Args:
        arg1 (str): Something short
        **kwargs: Keyword args that should remain on
            their own entry.
        *custom_args: Positional extras that should
            wrap to their own block even without a type
            hint.
        **some_other_strange_name: Keyword extras that
            likewise need wrapping to stay with their
            entry.
        *explicit_typed_args (tuple[int, ...]):
            Shows a variadic entry that still provides
            a type annotation.
        **typed_kwargs (dict[str, int]): Another
            variadic keyword argument that uses a type
            hint.
    """
    return (
        arg1,
        kwargs,
        custom_args,
        some_other_strange_name,
        explicit_typed_args,
        typed_kwargs,
    )
