45 if hasattr(self, "lexerId"): |
45 if hasattr(self, "lexerId"): |
46 return None |
46 return None |
47 else: |
47 else: |
48 return "container" |
48 return "container" |
49 |
49 |
50 def description(self, style): |
50 def description(self, style): # noqa: U100 |
51 """ |
51 """ |
52 Public method returning the descriptions of the styles supported |
52 Public method returning the descriptions of the styles supported |
53 by the lexer. |
53 by the lexer. |
54 |
54 |
55 <b>Note</b>: This methods needs to be overridden by the lexer class. |
55 <b>Note</b>: This methods needs to be overridden by the lexer class. |