to insert some content. content (`str`): The content to add. add_after (`str` or `Pattern`): The pattern to test on a line of `text`, the new content is added after the first instance matching it. add_before (`str` or `Pattern`): The pattern to test on a line of `text`, the new content is added before the first instance matching it. exact_match (`bool`, *optional*, defaults to `False`): A line is considered a match with `add_after` or `add_before` if it matches exactly when `exact_match=True`, otherwise, if `add_after`/`add_before` is present in the line. The arguments `add_after` and `add_before` are mutually exclusive, and one exactly needs to be provided. Returns: `str`: The text with the new content added if a match was found. Nz3You need to pass either `add_after` or `add_before`z/You can't pass both `add_after` or `add_before`c