We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26160e4 commit 6fc9d6aCopy full SHA for 6fc9d6a
1 file changed
packages/reflex-core/src/reflex_core/_internal/event/processor/future.py
@@ -37,7 +37,7 @@ class EventFuture(asyncio.Future):
37
)
38
39
def __post_init__(self) -> None:
40
- super().__init__(loop=self.loop)
+ super(EventFuture, self).__init__(loop=self.loop)
41
42
def add_child(self, child: EventFuture) -> None:
43
"""Add a child future to this tracked future.
0 commit comments