(self, ctxt, file_accessor)
| 3866 | return 8 |
| 3867 | |
| 3868 | def _save(self, ctxt, file_accessor): |
| 3869 | try: |
| 3870 | return self.perform_save(fileaccessor.CoreFileAccessor(file_accessor)) |
| 3871 | except: |
| 3872 | log_error(traceback.format_exc()) |
| 3873 | return False |
| 3874 | |
| 3875 | def init(self) -> bool: |
| 3876 | return True |
nothing calls this directly
no test coverage detected