We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce0334c commit da95ebeCopy full SHA for da95ebe
pydatalab/src/pydatalab/blocks/base.py
@@ -224,7 +224,7 @@ def process_events(self, events: list[dict] | dict):
224
225
for event in events:
226
# Match the event to any registered by the block
227
- if (event_name := event["event_name"]) in self.event_names:
+ if (event_name := event.pop("event_name")) in self.event_names:
228
# Bind the method to the instance before calling
229
bound_method = self.__class__.events_by_name[event_name].__get__(
230
self, self.__class__
0 commit comments