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 d5f3bec commit 74d13efCopy full SHA for 74d13ef
src/reactpy/asgi/executors/pyscript.py
@@ -62,7 +62,7 @@ def __init__(
62
are not applicable to CSR and will have no effect.
63
"""
64
ReactPyMiddleware.__init__(
65
- self, app=ReactPyAppCSR(self), root_components=[], **settings
+ self, app=ReactPyCSRApp(self), root_components=[], **settings
66
)
67
if not component_paths:
68
raise ValueError("At least one component file path must be provided.")
@@ -83,7 +83,7 @@ def match_dispatch_path(self, scope: WebSocketScope) -> bool:
83
84
85
@dataclass
86
-class ReactPyAppCSR(ReactPyApp):
+class ReactPyCSRApp(ReactPyApp):
87
"""ReactPy's standalone ASGI application for Client-Side Rendering (CSR)."""
88
89
parent: ReactPyCSR
0 commit comments