3 lines
84 B
Python
3 lines
84 B
Python
def should_alert(incident):
|
|
return incident["severity"] in ("high", "critical")
|
def should_alert(incident):
|
|
return incident["severity"] in ("high", "critical")
|