(cls)
| 568 | |
| 569 | @classmethod |
| 570 | def getInstance(cls): |
| 571 | if cls._instance is None: |
| 572 | cls._instance = LocaleSettings() |
| 573 | return cls._instance |
| 574 | |
| 575 | def get_progress(self, lang): |
| 576 | if not self.progress_data: |
nothing calls this directly
no test coverage detected