(self, *args, **kwargs)
| 77 | raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") |
| 78 | |
| 79 | def update(self, *args, **kwargs): |
| 80 | raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") |
| 81 | |
| 82 | def __getitem__(self, k): |
| 83 | if isinstance(k, str): |
no outgoing calls
no test coverage detected