Compare commits
No commits in common. "dcbec17064a7731e28d977ce6c1b89aedb9c9039" and "2916db78588537a8fffb70958bb65e0bfdfef896" have entirely different histories.
dcbec17064
...
2916db7858
5
wsgi.py
5
wsgi.py
@ -156,9 +156,9 @@ def plot(
|
|||||||
# Convert plot to SVG image
|
# Convert plot to SVG image
|
||||||
imgdata = io.StringIO()
|
imgdata = io.StringIO()
|
||||||
fig.savefig(imgdata, format="svg")
|
fig.savefig(imgdata, format="svg")
|
||||||
imgdata.seek(0) # rewind the data
|
svgImage.seek(0) # rewind the data
|
||||||
|
|
||||||
return imgdata.read()
|
return svgImage.read()
|
||||||
|
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
@ -188,7 +188,6 @@ def tables(
|
|||||||
|
|
||||||
tfoot = [
|
tfoot = [
|
||||||
" <tfoot>",
|
" <tfoot>",
|
||||||
" <tr>",
|
|
||||||
" <td>Gesamt</td>",
|
" <td>Gesamt</td>",
|
||||||
]
|
]
|
||||||
for i in range(len(df.columns) - 2):
|
for i in range(len(df.columns) - 2):
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user