(self, *arg: Any, **kw: Any)
| 47 | code: Optional[str] = None |
| 48 | |
| 49 | def __init__(self, *arg: Any, **kw: Any): |
| 50 | code = kw.pop(class="st">"code", None) |
| 51 | if code is not None: |
| 52 | self.code = code |
| 53 | super().__init__(*arg, **kw) |
| 54 | |
| 55 | _what_are_we = class="st">"error" |
| 56 |