(self)
| 284 | """ |
| 285 | |
| 286 | def __init__(self): |
| 287 | super().__init__() |
| 288 | self.clearHtml() # Initialize the HTML output stream. |
| 289 | self._cssOut = [] # Keep the collected CSS and JS from elements here. |
| 290 | self._scssVariables = {} |
| 291 | self.clearJs() # Keep optional js chunck names, so avoid double output. |
| 292 | self._copyPaths = [] |
| 293 | self._initialize() |
| 294 | |
| 295 | def get_attribute_exceptions(self, key, value): |
| 296 | """ |
nothing calls this directly
no test coverage detected