From 1794e34ed33de3d9cfcddb18b447e79a22c2b12e Mon Sep 17 00:00:00 2001
From: 2000-Trek
Date: Fri, 9 Jun 2023 19:58:13 +0200
Subject: [PATCH] changed the spaces between the user in the list
---
main.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.py b/main.py
index 816c1b7..88fc8f8 100644
--- a/main.py
+++ b/main.py
@@ -34,7 +34,7 @@ def list():
text = ""
for i in users:
text = text + f'{i[1]}: {i[2]}
'
- return '
' + text
+ return ' ' + text
@app.route("/list/user", methods=['GET'])
def user_info():