LINE_LENGTH: 50

**********
def example_function():
    """
    Args:
        arg1 (str): https://example.com/this_is_a_very_long_single_token_that_should_not_break_even_if_it_exceeds_the_line_length
    """
    pass

**********

def example_function():
    """
    Args:
        arg1 (str):
            https://example.com/this_is_a_very_long_single_token_that_should_not_break_even_if_it_exceeds_the_line_length
    """
    pass
