(self)
| 558 | } |
| 559 | |
| 560 | def __init__(self): |
| 561 | self.settings = SettingsProvider.getInstance().getSettings('localeSettings', self.defaults) |
| 562 | |
| 563 | try: |
| 564 | with open(os.path.join(config.pyfaPath, 'locale', 'progress.json'), "r") as f: |
| 565 | self.progress_data = json.load(f) |
| 566 | except FileNotFoundError: |
| 567 | self.progress_data = {} |
| 568 | |
| 569 | @classmethod |
| 570 | def getInstance(cls): |
nothing calls this directly
no test coverage detected