Skip to content

Commit 63e48fb

Browse files
committed
Do not return html by default in itables.sample_dfs.get_countries
1 parent 9f834aa commit 63e48fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+64
-62
lines changed

apps/dash/1_display_only.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
app = Dash(__name__)
77

8-
df = get_countries(html=False)
8+
df = get_countries()
99

1010
app.layout = html.Div(
1111
[

apps/dash/2_selected_rows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
app = Dash(__name__)
1010

11-
df = get_countries(html=False)
11+
df = get_countries()
1212

1313
app.layout = html.Div(
1414
[

apps/dash/3_update_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
app = Dash(__name__)
2626

27-
df = get_countries(html=False)
27+
df = get_countries()
2828

2929
# Create the layout with sidebar
3030
app.layout = html.Div(

apps/marimo/search_panes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def _():
1313

1414
mo.output.append(
1515
ITable(
16-
get_countries(html=False, climate_zone=True).reset_index(),
16+
get_countries(climate_zone=True).reset_index(),
1717
layout={"top1": "searchPanes"},
1818
searchPanes={
1919
"layout": "columns-3",

apps/shiny/issue_360/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def server(
2323
):
2424
@render_widget
2525
def my_table(): # pyright: ignore[reportUnusedFunction]
26-
return ITable(df=get_countries(html=False))
26+
return ITable(df=get_countries())
2727

2828

2929
# Create the Shiny app

docs/apps/html.md

Lines changed: 1 addition & 1 deletion

docs/apps/notebook.md

Lines changed: 1 addition & 1 deletion

docs/apps/shiny.md

Lines changed: 1 addition & 1 deletion

docs/changelog.md

Lines changed: 2 additions & 0 deletions

docs/css.md

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)