Skip to content

Commit 72eb5e4

Browse files
authored
bug: QA followup from bs5 shiny theme (#639)
1 parent da69ea0 commit 72eb5e4

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

examples/global_pyplot/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
ui.tags.h5("A plot should appear immediately below this text."),
1010
),
1111
ui.output_plot("mpl"),
12+
ui.tags.hr(),
1213
ui.panel_conditional(
1314
"input.render",
1415
ui.tags.h5("An error message should appear immediately below this text."),

examples/static_plots/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ def holoviews():
118118
@output
119119
@render.plot
120120
def xarray():
121+
# `pooch` module required to download `open_dataset`
121122
import xarray as xr
122123

123124
airtemps = xr.tutorial.open_dataset("air_temperature")

setup.cfg

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ test =
7272
plotnine
7373
plotly
7474
duckdb
75+
holoviews
76+
bokeh
77+
xarray
78+
geopandas
79+
missingno
80+
pooch
81+
7582
dev =
7683
black>=23.1.0
7784
flake8>=6.0.0

shiny/experimental/e2e/sidebar/app.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
app_ui = ui.page_fixed(
88
ui.h1("Toggle Sidebars"),
99
ui.div(
10-
ui.input_action_button("open_all", "Show all", class_="me-1"),
11-
ui.input_action_button("close_all", "Close all", class_="me-2"),
10+
ui.input_action_button("open_all", "Show all", class_="me-1 mb-1"),
11+
ui.input_action_button("close_all", "Close all", class_="mb-1"),
12+
ui.tags.br(),
1213
ui.input_action_button("toggle_outer", "Toggle outer", class_="me-1"),
1314
ui.input_action_button("toggle_inner", "Toggle inner"),
1415
class_="my-2",

0 commit comments

Comments
 (0)