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

Commit 34a8a96

Browse files
authored
Fix indentation
1 parent 091f346 commit 34a8a96

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,14 @@ def clickhouse():
5353
if not query:
5454
return app.send_static_file('play.html')
5555

56-
if database:
56+
if database:
5757
query = f"USE {database}; {query}".encode()
5858

5959
result, errmsg = chdb_query_with_errmsg(query, format)
6060
if len(errmsg) == 0:
6161
return result
6262
return errmsg
6363

64-
6564
@app.route('/', methods=["POST"])
6665
@auth.login_required
6766
def play():

0 commit comments

Comments
 (0)