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 83c620f commit ba0a20cCopy full SHA for ba0a20c
reflex/base.py
@@ -24,7 +24,7 @@ class Config:
24
use_enum_values = True
25
extra = "allow"
26
27
- def __init_subclass__(cls) -> None:
+ def __init_subclass__(cls):
28
"""Warn that rx.Base is deprecated."""
29
from reflex.utils import console
30
@@ -34,7 +34,7 @@ def __init_subclass__(cls) -> None:
34
deprecation_version="0.8.15",
35
removal_version="0.9.0",
36
)
37
- return super().__init_subclass__()
+ super().__init_subclass__()
38
39
def json(self) -> str:
40
"""Convert the object to a json string.
0 commit comments