(cls)
| 507 | |
| 508 | @classmethod |
| 509 | def getInstance(cls): |
| 510 | if cls._instance is None: |
| 511 | cls._instance = EOSSettings() |
| 512 | |
| 513 | return cls._instance |
| 514 | |
| 515 | def __init__(self): |
| 516 | self.EOSSettings = SettingsProvider.getInstance().getSettings("pyfaEOSSettings", eos.config.settings) |
nothing calls this directly
no test coverage detected