(self, *args, **kwargs)
| 484 | raise Exception(f"You cannot use ``pop`` on a {self.__class__.__name__} instance.") |
| 485 | |
| 486 | def update(self, *args, **kwargs): |
| 487 | raise Exception(f"You cannot use ``update`` on a {self.__class__.__name__} instance.") |
| 488 | |
| 489 | def __getitem__(self, k): |
| 490 | if isinstance(k, str): |
no outgoing calls
no test coverage detected