(self)
| 6 | |
| 7 | class Settings: |
| 8 | def __init__(self): |
| 9 | self.settings_file_path = self.get_settings_directory_path() + 'settings.json' |
| 10 | os.makedirs(os.path.dirname(self.settings_file_path), exist_ok=True) |
| 11 | self.settings = self.load_settings_from_file() |
| 12 | |
| 13 | def get_settings_directory_path(self): |
| 14 | return str(Path.home()) + '/.open-interface/' |
nothing calls this directly
no test coverage detected