This video url is already in the attachment section. I want to add this video to the actual result section in the description
start_idx = current_description.find("Actual Results") + len("Actual Results")
before_append = current_description[:start_idx].strip()
after_append = current_description[start_idx:].strip()
updated_description = (
f"{before_append}\n"
+ "\n".join([f"<h2>Video Preview</h2><a href='{url}' target='_blank'>{url}</a>" for url in file_urls])
+ f"\n{after_append}"
)