Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Proposed fix for #7
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani committed Nov 2, 2023
1 parent 34a8a96 commit 63e2254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def clickhouse():
@app.route('/', methods=["POST"])
@auth.login_required
def play():
query = request.data or None
query = request.get_data() or None
format = request.args.get('default_format', default="TSV", type=str)
database = request.args.get('database', default="", type=str)
if not query:
Expand Down

0 comments on commit 63e2254

Please sign in to comment.