Skip to content

Commit 9bb0dfa

Browse files
committed
🐛 some paths are not yet relative...
1 parent bc92bda commit 9bb0dfa

File tree

1 file changed

+3
-3
lines changed
  • tests/report_examples/Basic_example_vuegen_demo_notebook/streamlit_report/sections/Dataframes

1 file changed

+3
-3
lines changed

tests/report_examples/Basic_example_vuegen_demo_notebook/streamlit_report/sections/Dataframes/All_Formats.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
df_index += 1
3131
st.markdown('''<h4 style='text-align: center; color: #2b8cbe;'>Abundance Table Example Xls</h4>''', unsafe_allow_html=True)
3232
selected_sheet = 0
33-
sheet_names = table_utils.get_sheet_names("/Users/heweb/Documents/repos/vuegen/docs/example_data/Basic_example_vuegen_demo_notebook/2_Dataframes/1_All_formats/2_abundance_table_example_xls.xls")
33+
sheet_names = table_utils.get_sheet_names("/home/runner/work/vuegen/docs/example_data/Basic_example_vuegen_demo_notebook/2_Dataframes/1_All_formats/2_abundance_table_example_xls.xls")
3434
selected_sheet = st.selectbox("Select a sheet to display", options=sheet_names)
3535

36-
df = pd.read_excel('/Users/heweb/Documents/repos/vuegen/docs/example_data/Basic_example_vuegen_demo_notebook/2_Dataframes/1_All_formats/2_abundance_table_example_xls.xls', sheet_name=selected_sheet)
36+
df = pd.read_excel('/home/runner/work/vuegen/docs/example_data/Basic_example_vuegen_demo_notebook/2_Dataframes/1_All_formats/2_abundance_table_example_xls.xls', sheet_name=selected_sheet)
3737

3838

3939
# Displays a DataFrame using AgGrid with configurable options.
@@ -103,7 +103,7 @@
103103
df_index += 1
104104
st.markdown('''<h4 style='text-align: center; color: #2b8cbe;'>Example Xlsx</h4>''', unsafe_allow_html=True)
105105
selected_sheet = 0
106-
df = pd.read_excel('/Users/heweb/Documents/repos/vuegen/docs/example_data/Basic_example_vuegen_demo_notebook/2_Dataframes/1_All_formats/5_example_xlsx.xlsx', sheet_name=selected_sheet)
106+
df = pd.read_excel('/home/runner/work/vuegen/docs/example_data/Basic_example_vuegen_demo_notebook/2_Dataframes/1_All_formats/5_example_xlsx.xlsx', sheet_name=selected_sheet)
107107

108108

109109
# Displays a DataFrame using AgGrid with configurable options.

0 commit comments

Comments
 (0)