(self, *args, **kwargs)
| 41 | return super().__new__(cls) |
| 42 | |
| 43 | def _write_docstring(self, *args, **kwargs): |
| 44 | raise NotImplementedError( |
| 45 | '_write_docstring is not implemented. Please subclass from ' |
| 46 | 'this class and provide your own _write_docstring method' |
| 47 | ) |
| 48 | |
| 49 | def expandtabs(self, tabsize=8): |
| 50 | """Expands tabs to spaces |