(self, operation: str)
| 234 | return table._windowed_delta(self.key, d, event or self.event) |
| 235 | |
| 236 | def __unauthorized_dict_operation(self, operation: str) -> NoReturn: |
| 237 | raise NotImplementedError( |
| 238 | f"Accessing {operation} on a WindowSet is not implemented. " |
| 239 | "Try using the underlying table directly" |
| 240 | ) |
| 241 | |
| 242 | def keys(self) -> NoReturn: |
| 243 | self.__unauthorized_dict_operation("keys") |