LINE_LENGTH: 55

**********
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.

**********

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.
