Get a style for a given Pygments token.
(self, token_type: TokenType)
| 129 | |
| 130 | @abstractmethod |
| 131 | def get_style_for_token(self, token_type: TokenType) -> Style: |
| 132 | """Get a style for a given Pygments token.""" |
| 133 | raise NotImplementedError # pragma: no cover |
| 134 | |
| 135 | @abstractmethod |
| 136 | def get_background_style(self) -> Style: |
no outgoing calls
no test coverage detected