Skip to content

Commit e371f02

Browse files
committed
🐛 fix path (which is still absolute)
1 parent 20fc7df commit e371f02

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ cython_debug/
116116
# Temporary files
117117
logs/
118118
vuegen/logs/
119-
streamlit_report/
119+
./streamlit_report/
120120
!tests/report_examples
121121
quarto_report/
122122
output_docker/

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("/home/runner/work/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/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('/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)
36+
df = pd.read_excel('/home/runner/work/vuegen/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('/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)
106+
df = pd.read_excel('/home/runner/work/vuegen/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)