Update scorer.py
Browse files
scorer.py
CHANGED
@@ -29,5 +29,5 @@ def calculate_risk(score, confidence, emails, meetings):
|
|
29 |
if score > 85 and confidence > 0.9:
|
30 |
return "Low"
|
31 |
if score < 55 or (emails + meetings) <= 2:
|
32 |
-
return "
|
33 |
return "Medium"
|
|
|
29 |
if score > 85 and confidence > 0.9:
|
30 |
return "Low"
|
31 |
if score < 55 or (emails + meetings) <= 2:
|
32 |
+
return "Critical"
|
33 |
return "Medium"
|