Skip to content
Snippets Groups Projects
Commit 94ae3471 authored by David Verelst's avatar David Verelst
Browse files

prepost.dlcdefs: correctly count total number of cases from spreadsheets

parent 2b29f67d
No related branches found
No related tags found
1 merge request!106small prepost bug fixes
...@@ -391,7 +391,7 @@ def excel_stabcon(proot, fext='xlsx', pignore=None, pinclude=None, sheet=0, ...@@ -391,7 +391,7 @@ def excel_stabcon(proot, fext='xlsx', pignore=None, pinclude=None, sheet=0,
if not silent: if not silent:
k = 0 k = 0
for df in dict_dfs: for dlc, df in viewitems(dict_dfs):
k += len(df) k += len(df)
print('in which a total of %i cases are defined.' % k) print('in which a total of %i cases are defined.' % k)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment