Skip to content

Commit 1f92dae

Browse files
authored
Merge branch 'MAIF:master' into feature/refacto_callbacks
2 parents 62f1a26 + 72a5179 commit 1f92dae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
# -- Additional html pages -------------------------------------------------
114114
import subprocess
115115
# Generates the report example in the documentation
116-
subprocess.call(['python', '../tutorial/report/shapash_report_example.py'])
116+
subprocess.call(['python', '../tutorial/generate_report/shapash_report_example.py'])
117117
html_extra_path = ['../tutorial/report/output/report.html']
118118

119119

shapash/webapp/smart_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@ def update_datatable(selected_data,
15181518
{
15191519
column: {'value': str(value), 'type': 'text'}
15201520
for column, value in row.items()
1521-
} for row in df.to_dict('rows')
1521+
} for row in df.to_dict('index').values()
15221522
]
15231523
return (
15241524
data,

0 commit comments

Comments
 (0)