(self)
| 121 | return os.path.join(os.path.expanduser("~"), self._CONFIG_FILE_NAME) |
| 122 | |
| 123 | def _save_to_file(self): |
| 124 | try: |
| 125 | with gfile.Open(self._config_file_path, "w") as config_file: |
| 126 | json.dump(self._config, config_file) |
| 127 | except IOError: |
| 128 | pass |
| 129 | |
| 130 | def summarize(self, highlight=None): |
| 131 | """Get a text summary of the config. |