(self)
| 298 | return cls._instance |
| 299 | |
| 300 | def __init__(self): |
| 301 | serviceHTMLExportDefaultSettings = { |
| 302 | "path" : config.savePath + os.sep + 'pyfaFits.html', |
| 303 | "minimal": False |
| 304 | } |
| 305 | self.serviceHTMLExportSettings = SettingsProvider.getInstance().getSettings( |
| 306 | "pyfaServiceHTMLExportSettings", |
| 307 | serviceHTMLExportDefaultSettings |
| 308 | ) |
| 309 | |
| 310 | def getMinimalEnabled(self): |
| 311 | return self.serviceHTMLExportSettings["minimal"] |
nothing calls this directly
no test coverage detected