Skip to content

Commit

Permalink
partially address PR comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
ElijahAhianyo committed May 30, 2024
1 parent f298d5c commit 83f7094
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions reflex/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""Import all classes and functions the end user will need to make an app.
Anything imported here will be available in the default Reflex import as `rx.*`.
To signal to typecheckers that something should be reexported,
Dynamic Imports
---------------
Expand Down Expand Up @@ -83,8 +82,6 @@

from reflex.utils import lazy_loader

from .page import page as page

RADIX_THEMES_MAPPING: dict = {
"components.radix.themes.base": ["color_mode", "theme", "theme_panel"],
"components.radix.themes.color_mode": ["color_mode"],
Expand Down Expand Up @@ -303,6 +300,7 @@
"utils.imports": ["ImportVar"],
"utils.serializers": ["serializer"],
"vars": ["cached_var", "Var"],
"page": ["page"],
}

_SUBMODULES: set[str] = {
Expand Down
2 changes: 1 addition & 1 deletion reflex/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ from .utils.imports import ImportVar as ImportVar
from .utils.serializers import serializer as serializer
from .vars import cached_var as cached_var
from .vars import Var as Var
from reflex.utils import lazy_loader
from .page import page as page
from reflex.utils import lazy_loader

RADIX_THEMES_MAPPING: dict
RADIX_THEMES_COMPONENTS_MAPPING: dict
Expand Down

0 comments on commit 83f7094

Please sign in to comment.