Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -40,7 +40,7 @@ data = None
|
|
40 |
for api in apis:
|
41 |
data = make_call(api)
|
42 |
if data: # Check for a successful response
|
43 |
-
st.write(
|
44 |
break # Exit both the for loop and while loop
|
45 |
else:
|
46 |
st.write(f"Failed to retrieve data from.")
|
|
|
40 |
for api in apis:
|
41 |
data = make_call(api)
|
42 |
if data: # Check for a successful response
|
43 |
+
st.write(data)
|
44 |
break # Exit both the for loop and while loop
|
45 |
else:
|
46 |
st.write(f"Failed to retrieve data from.")
|