(self, **args)
| 281 | exc_info = None # type: Union[Tuple[None, None, None], Tuple[BaseException, Exception, types.TracebackType]] # noqa: E501 |
| 282 | |
| 283 | def __init__(self, **args): |
| 284 | # type: (Any) -> None |
| 285 | self.__dict__.update(args) |
| 286 | |
| 287 | def __repr__(self): |
| 288 | # type: () -> str |