From 021fba2bcb81ab9d826bd64e368178d4f6725a54 Mon Sep 17 00:00:00 2001
From: 2000-Trek
Date: Fri, 9 Jun 2023 19:56:32 +0200
Subject: [PATCH] deleted the addtag button from the list
---
main.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.py b/main.py
index f44696f..816c1b7 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]}
'
+ text = text + f'{i[1]}: {i[2]}
'
return '
' + text
@app.route("/list/user", methods=['GET'])