(self)
| 687 | return f'CustomConfig({self.mount_path})' |
| 688 | |
| 689 | def validate(self) -> None: |
| 690 | if not isinstance(self.content, str): |
| 691 | raise SpecValidationError( |
| 692 | f'CustomConfig content must be a string. Got {type(self.content)}') |
| 693 | if not isinstance(self.mount_path, str): |
| 694 | raise SpecValidationError( |
| 695 | f'CustomConfig content must be a string. Got {type(self.mount_path)}') |
| 696 | |
| 697 | |
| 698 | @contextmanager |
no test coverage detected