Skip to content

_status_of

Internal helper
This page documents an internal implementation helper, not a primary public API.
Source code in src/fabricops_kit/run_summary.py
11
12
13
14
def _status_of(section: dict | None) -> str:
    if not section:
        return "not_provided"
    return section.get("status", "not_provided")