We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 290e24c commit 934e6f4Copy full SHA for 934e6f4
1 file changed
bug_triage.py
@@ -34,6 +34,10 @@ def classify_severity(content: str) -> str:
34
def classify_priority(severity: str) -> str:
35
"""
36
Maps the technical severity level to a business priority level.
37
+ >>> classify_priority("S1")
38
+ 'P1'
39
+ >>> classify_priority("S4")
40
+ 'P4'
41
42
priority_map = {
43
"S1": "P1",
0 commit comments