CheckStatus
CheckStatus()Status of a check result.
Each check returns one of these statuses to indicate whether the check passed, failed, or encountered issues.
Attributes
OK :-
Check passed successfully.
NOTE :-
Informational message, not a problem.
WARNING :-
Potential issue that should be reviewed.
ERROR :-
Check failed.
SKIPPED :-
Check was skipped (e.g., required tool not installed).
Examples
>>> status = CheckStatus.OK
>>> status.symbol
'✓'
>>> status.color
'green'
>>> str(status)
'ok'