Skip to content

Commit 24cc3ff

Browse files
committed
lowercase Pandas to pandas
1 parent e88bec4 commit 24cc3ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/penguins/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
def server(input: Inputs, output: Outputs, session: Session):
5656
@reactive.calc
5757
def filtered_df() -> pd.DataFrame:
58-
"""Returns a Pandas data frame that includes only the desired rows"""
58+
"""Returns a pandas data frame that includes only the desired rows"""
5959

6060
# This calculation "req"uires that at least one species is selected
6161
req(len(input.species()) > 0)

examples/static_plots/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
ui.input_slider("cov", "Co-variance", min=0, max=1, value=0.4),
3737
),
3838
),
39-
ui.nav_panel("Pandas", ui.output_plot("pandas")),
39+
ui.nav_panel("pandas", ui.output_plot("pandas")),
4040
ui.nav_panel("Holoviews", ui.output_plot("holoviews", height="600px")),
4141
ui.nav_panel("xarray", ui.output_plot("xarray")),
4242
ui.nav_panel("geopandas", ui.output_plot("geopandas")),

0 commit comments

Comments
 (0)