MCPcopy
hub / github.com/faust-streaming/faust / __unauthorized_dict_operation

Method __unauthorized_dict_operation

faust/tables/wrappers.py:236–240  ·  view source on GitHub ↗
(self, operation: str)

Source from the content-addressed store, hash-verified

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")

Callers 3

keysMethod · 0.95
itemsMethod · 0.95
valuesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected