From eed792cec879358226381c9c86420cb7c43ff6c8 Mon Sep 17 00:00:00 2001 From: 2000-Trek Date: Fri, 9 Jun 2023 20:09:24 +0200 Subject: [PATCH] changed br space --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 64d87c1..9f278a0 100644 --- a/main.py +++ b/main.py @@ -33,7 +33,7 @@ def list(): users = c.fetchall() text = "" for i in users: - text = text + f'

{i[1]}: {i[2]}

Change balance:

' + text = text + f'

{i[1]}: {i[2]}

Change balance:



' return '
Search for User:


' + text @app.route("/list/user", methods=['GET'])