How Can I Retrieve a Subtask's Description with Python in Jira?

Jira’s Python client returns complete main task details but omits subtask descriptions. How can I access the subtask description?

ticket_main = jira.issue('ABC-001')
for child_task in ticket_main.fields.subtasks:
    if 'details' in child_task.fields.summary.lower():
        desc_content = child_task.fields.description
        print(child_task.raw['fields'])

hey, i had a similar issue; try fetching each subtask separately with its key (child_task.key). i used jira.issue(child_task.key) to get full details, including the description. hope it helps.