rich_check
Helper classes for rich pretty printing checks.
Check
Bases: BaseModel
Holds a success status and a message for an error check.
Source code in dapla_team_cli/pr/rich_check.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
|
__rich__()
Help Rich print with correct font colors and emojis.
Source code in dapla_team_cli/pr/rich_check.py
27 28 29 30 31 32 33 34 35 36 |
|
get_status()
Return the current status.
Source code in dapla_team_cli/pr/rich_check.py
23 24 25 |
|
RichFailure
Bases: Check
A failed check.
Source code in dapla_team_cli/pr/rich_check.py
45 46 47 48 |
|
RichSuccess
Bases: Check
A successful check.
Source code in dapla_team_cli/pr/rich_check.py
39 40 41 42 |
|
RichWarning
Bases: Check
A warning check.
Source code in dapla_team_cli/pr/rich_check.py
51 52 53 54 |
|
Status
Bases: Enum
Enum for pretty checks.
Source code in dapla_team_cli/pr/rich_check.py
9 10 11 12 13 14 |
|