remove comment

This commit is contained in:
Roberto Alsina 2023-05-16 12:58:53 -03:00
parent 21abfbfd98
commit b520913c47
1 changed files with 0 additions and 1 deletions

View File

@ -24,7 +24,6 @@ def handle(req):
byte_arr = BytesIO()
c.image.save(byte_arr, format="JPEG")
# return Response(chart.render(is_unicode=True), mimetype="image/svg+xml")
return (
f'<img src="data:image/jpeg;base64, {base64.b64encode(byte_arr.getvalue()).decode("utf-8")}">',
200,