Skip to content

Commit 97ce571

Browse files
authored
chore: Remove experimental from app (#1028)
1 parent 7b739d9 commit 97ce571

File tree

1 file changed

+7
-9
lines changed
  • tests/playwright/deploys/apps/plotly_app

1 file changed

+7
-9
lines changed

tests/playwright/deploys/apps/plotly_app/app.py

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
import plotly.graph_objs as go
44
from shinywidgets import output_widget, render_widget
55

6-
from shiny import App
7-
from shiny import experimental as x
8-
from shiny import reactive, render, req, session, ui
6+
from shiny import App, reactive, render, req, session, ui
97

108
# Load the Gapminder dataset
119
df = px.data.gapminder()
@@ -26,23 +24,23 @@
2624
summary_df.columns = ["_".join(col).strip() for col in summary_df.columns.values]
2725
summary_df.rename(columns={"country_": "country"}, inplace=True)
2826

29-
app_ui = x.ui.page_fillable(
27+
app_ui = ui.page_fillable(
3028
{"class": "p-3"},
3129
ui.p(
3230
ui.strong("Instructions:"),
3331
" Select one or more countries in the table below to see more information.",
3432
),
35-
x.ui.layout_column_wrap(
33+
ui.layout_column_wrap(
3634
1,
37-
x.ui.card(
35+
ui.card(
3836
ui.output_data_frame("summary_data"),
3937
),
40-
x.ui.layout_column_wrap(
38+
ui.layout_column_wrap(
4139
1 / 2,
42-
x.ui.card(
40+
ui.card(
4341
output_widget("country_detail_pop", height="100%"),
4442
),
45-
x.ui.card(
43+
ui.card(
4644
output_widget("country_detail_percap", height="100%"),
4745
),
4846
),

0 commit comments

Comments
 (0)