(cls)
| 292 | |
| 293 | @classmethod |
| 294 | def getInstance(cls): |
| 295 | if cls._instance is None: |
| 296 | cls._instance = HTMLExportSettings() |
| 297 | |
| 298 | return cls._instance |
| 299 | |
| 300 | def __init__(self): |
| 301 | serviceHTMLExportDefaultSettings = { |
nothing calls this directly
no test coverage detected