(self, key: str, default: Any = None)
| 75 | raise AttributeError(name) |
| 76 | |
| 77 | def get(self, key: str, default: Any = None) -> Any: |
| 78 | return self.data.get(key, default) |
| 79 | |
| 80 | def to_dict(self) -> Dict[str, Any]: |
| 81 | return dict(self.data) |
no outgoing calls