Check if the config file exists. Returns: bool: True if the config file exists, False otherwise.
(self)
| 312 | return dataclasses.replace(self, **kwargs) |
| 313 | |
| 314 | def exists(self) -> bool: |
| 315 | """Check if the config file exists. |
| 316 | |
| 317 | Returns: |
| 318 | bool: True if the config file exists, False otherwise. |
| 319 | |
| 320 | """ |
| 321 | return bool(self._cloud_config_path) and self._cloud_config_path.exists() |
no outgoing calls