Update app.py
Browse files
app.py
CHANGED
@@ -42,11 +42,11 @@ def api():
|
|
42 |
users.append("others")
|
43 |
print(users)
|
44 |
|
45 |
-
|
46 |
-
|
47 |
|
48 |
-
|
49 |
-
|
50 |
|
51 |
# users.index("b")
|
52 |
|
|
|
42 |
users.append("others")
|
43 |
print(users)
|
44 |
|
45 |
+
matrix = [[0 for _ in range(users)] for _ in range(users)]
|
46 |
+
print(matrix)
|
47 |
|
48 |
+
for msg_id in message_list:
|
49 |
+
print([key for key, value in message_list.items() if value.get("quoted_msg_id") == msg_id])
|
50 |
|
51 |
# users.index("b")
|
52 |
|