You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* pick up env vars prefixed by REFLEX_
* type annotate to ClassVar and fix warning
* forgot backticks
* fix an issue with loglevel not triggering deprecation message
Copy file name to clipboardExpand all lines: reflex/config.py
+33-7Lines changed: 33 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@
22
22
TYPE_CHECKING,
23
23
Annotated,
24
24
Any,
25
+
ClassVar,
25
26
Generic,
26
27
TypeVar,
27
28
get_args,
@@ -894,6 +895,8 @@ class Config: # pyright: ignore [reportIncompatibleVariableOverride]
894
895
# Extra overlay function to run after the app is built. Formatted such that `from path_0.path_1... import path[-1]`, and calling it with no arguments would work. For example, "reflex.components.moment.moment".
0 commit comments