(self)
| 50 | return cls._instance |
| 51 | |
| 52 | def __init__(self): |
| 53 | if hasattr(self, 'BASE_PATH'): |
| 54 | if not os.path.exists(self.BASE_PATH): |
| 55 | os.mkdir(self.BASE_PATH) |
| 56 | |
| 57 | def getSettings(self, area, defaults=None): |
| 58 | # type: (basestring, dict) -> service.Settings |
nothing calls this directly
no outgoing calls
no test coverage detected