(self, *args, **kwargs)
| 784 | # Class that only overrides __init__ |
| 785 | class E: |
| 786 | def __init__(self, *args, **kwargs): |
| 787 | super().__init__(*args, **kwargs) |
| 788 | |
| 789 | error_msg = r'object.__init__\(\) takes exactly one argument \(the instance to initialize\)' |
| 790 |