Skip to content

Commit 5b056ad

Browse files
committed
py3.11 super() fix again
1 parent 73e2bbe commit 5b056ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/reflex-core/src/reflex_core/_internal/event/processor

packages/reflex-core/src/reflex_core/_internal/event/processor/future.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def cancel(self, msg: object = None) -> bool:
8888
Returns:
8989
True if the future was successfully cancelled.
9090
"""
91-
result = super().cancel(msg)
91+
result = super(EventFuture, self).cancel(msg)
9292
for child in self.children:
9393
child.cancel(msg)
9494
return result

0 commit comments

Comments
 (0)