Spaces:
Runtime error
Runtime error
Update chatchain.py
Browse files- chatchain.py +2 -2
chatchain.py
CHANGED
@@ -35,10 +35,10 @@ def update_rec_list(main_chain):
|
|
35 |
if "chat/" in ea:
|
36 |
try:
|
37 |
if not "__Source__" in ea:
|
38 |
-
rec_list.append(ea.split("/",1)[1])
|
39 |
except Exception:
|
40 |
pass
|
41 |
-
print (rec_list)
|
42 |
return rec_list
|
43 |
|
44 |
class MyChainSend:
|
|
|
35 |
if "chat/" in ea:
|
36 |
try:
|
37 |
if not "__Source__" in ea:
|
38 |
+
rec_list.append(ea.split("/",1)[1].split("/",1)[0])
|
39 |
except Exception:
|
40 |
pass
|
41 |
+
print (f'REC_LIST : : {rec_list}')
|
42 |
return rec_list
|
43 |
|
44 |
class MyChainSend:
|