We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73e2bbe commit 5b056adCopy full SHA for 5b056ad
1 file changed
packages/reflex-core/src/reflex_core/_internal/event/processor/future.py
@@ -88,7 +88,7 @@ def cancel(self, msg: object = None) -> bool:
88
Returns:
89
True if the future was successfully cancelled.
90
"""
91
- result = super().cancel(msg)
+ result = super(EventFuture, self).cancel(msg)
92
for child in self.children:
93
child.cancel(msg)
94
return result
0 commit comments