File size: 255 Bytes
201b13c
 
 
 
 
 
 
 
 
 
 
 
 
 
fb4ca0a
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
Project-wide constants (no logic here).
"""

SEVERITY_SCORE = {
    "Minor": 1,
    "Moderate": 2,
    "Critical": 3
}


DECISION_COLOR = {
    "PASS": (0, 255, 0),
    "REVIEW": (0, 165, 255),
    "FAIL": (0, 0, 255),
    "SKIPPED": (255, 191, 0),
}