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 55b60fd commit 16d03f2Copy full SHA for 16d03f2
shiny/express/layout.py
@@ -0,0 +1,14 @@
1
+import warnings
2
+
3
+from . import ui
4
5
+warnings.warn(
6
+ "shiny.express.layout has been deprecated and renamed to shiny.express.ui. "
7
+ "Please import shiny.express.ui instead of shiny.express.layout.",
8
+ ImportWarning,
9
+ stacklevel=2,
10
+)
11
12
13
+def __getattr__(name: str) -> object:
14
+ return getattr(ui, name)
0 commit comments