Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -273,7 +273,7 @@ with gr.Blocks() as app:
|
|
273 |
response, message_out = get_my_chain_send(address)
|
274 |
#[demoDictionary[dict_key] for dict_key in demoDictionary]
|
275 |
#for ip,dictValue in enumerate(response):
|
276 |
-
for ip,val in enumerate(response):
|
277 |
try:
|
278 |
out.append(response[0][ip]["message"])
|
279 |
except Exception:
|
|
|
273 |
response, message_out = get_my_chain_send(address)
|
274 |
#[demoDictionary[dict_key] for dict_key in demoDictionary]
|
275 |
#for ip,dictValue in enumerate(response):
|
276 |
+
for ip,val in enumerate(response[0]):
|
277 |
try:
|
278 |
out.append(response[0][ip]["message"])
|
279 |
except Exception:
|