From 18bb7c1c622079b973d6afbab1be900c6af67b22 Mon Sep 17 00:00:00 2001 From: Felix Blanke Date: Sun, 20 Aug 2023 00:55:22 +0200 Subject: [PATCH] Change table order --- wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsgi.py b/wsgi.py index a129ab7..c70a034 100644 --- a/wsgi.py +++ b/wsgi.py @@ -44,10 +44,10 @@ def tables( output_str.append(tfoot) output_str.append(table[idx:]) - _print_as_html(df) _print_as_html( df.groupby("Bundesland", as_index=False)[["Digitale Befragung"]].sum() ) + _print_as_html(df) return render_template("base.html", tables="\n".join(output_str))