def extract_status()

in migration/src/jira_util.py [0:0]


def extract_status(o: dict) -> str:
    status = o.get("fields").get("status")
    return status.get("name", "") if status else ""