Return the path to the main settings file (~/.openharness/settings.json).
()
| 30 | |
| 31 | |
| 32 | def get_config_file_path() -> Path: |
| 33 | """Return the path to the main settings file (~/.openharness/settings.json).""" |
| 34 | return get_config_dir() / _CONFIG_FILE_NAME |
| 35 | |
| 36 | |
| 37 | def get_data_dir() -> Path: |