Skip to content

Commit ba0a20c

Browse files
committed
what
1 parent 83c620f commit ba0a20c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reflex/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Config:
2424
use_enum_values = True
2525
extra = "allow"
2626

27-
def __init_subclass__(cls) -> None:
27+
def __init_subclass__(cls):
2828
"""Warn that rx.Base is deprecated."""
2929
from reflex.utils import console
3030

@@ -34,7 +34,7 @@ def __init_subclass__(cls) -> None:
3434
deprecation_version="0.8.15",
3535
removal_version="0.9.0",
3636
)
37-
return super().__init_subclass__()
37+
super().__init_subclass__()
3838

3939
def json(self) -> str:
4040
"""Convert the object to a json string.

0 commit comments

Comments
 (0)