(self, *args, **kwargs)
| 99 | raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") |
| 100 | |
| 101 | def update(self, *args, **kwargs): |
| 102 | raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") |
| 103 | |
| 104 | def __getitem__(self, k: Any) -> Any: |
| 105 | if isinstance(k, str): |
no outgoing calls