diff --git a/main.py b/main.py index 88fc8f8..9e0e0df 100644 --- a/main.py +++ b/main.py @@ -33,8 +33,8 @@ def list(): users = c.fetchall() text = "" for i in users: - text = text + f'

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

Change balance:



' - return '
Search for User:
' + text + text = text + f'

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

Change balance:

' + return '
Search for User:


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