Load all templates and assets once.
(self)
| 177 | """Loads and caches HTML/CSS/JS templates for heatmap generation.""" |
| 178 | |
| 179 | def __init__(self): |
| 180 | """Load all templates and assets once.""" |
| 181 | self.index_template = None |
| 182 | self.file_template = None |
| 183 | self.index_css = None |
| 184 | self.index_js = None |
| 185 | self.file_css = None |
| 186 | self.file_js = None |
| 187 | self.logo_html = None |
| 188 | |
| 189 | self._load_templates() |
| 190 | |
| 191 | def _load_templates(self): |
| 192 | """Load all template files from _heatmap_assets.""" |
nothing calls this directly
no test coverage detected