(**kwargs)
| 62 | |
| 63 | @staticmethod |
| 64 | def from_dict(**kwargs): |
| 65 | # type: (...) -> ErrorContext |
| 66 | klass = kwargs.get("context_type", "ErrorContext") |
| 67 | cl = getattr(sys.modules[__name__], klass) |
| 68 | return cl(**kwargs) |
| 69 | |
| 70 | def _get_base(self): |
| 71 | return self._base |
no test coverage detected