misra.py: Advisory=>style

This commit is contained in:
Daniel Marjamäki 2019-04-12 12:30:06 +02:00
parent 76e64dce8c
commit 8bacfafd01
1 changed files with 1 additions and 1 deletions

View File

@ -583,7 +583,7 @@ class Rule:
def __repr__(self):
return "%d.%d %s" % (self.num1, self.num2, self.severity)
SEVERITY_MAP = { 'Required': 'warning', 'Mandatory': 'error', 'Advisory': 'information', 'style': 'style' }
SEVERITY_MAP = { 'Required': 'warning', 'Mandatory': 'error', 'Advisory': 'style', 'style': 'style' }
class MisraChecker: