(cls)
| 44 | |
| 45 | @classmethod |
| 46 | def getInstance(cls): |
| 47 | if cls._instance is None: |
| 48 | cls._instance = SettingsProvider() |
| 49 | |
| 50 | return cls._instance |
| 51 | |
| 52 | def __init__(self): |
| 53 | if hasattr(self, 'BASE_PATH'): |
nothing calls this directly
no test coverage detected