Update app.py
Browse files
app.py
CHANGED
@@ -13,6 +13,6 @@ if save_button:
|
|
13 |
|
14 |
if response.status_code == 200:
|
15 |
index = response.text # Retrieve the index from the response
|
16 |
-
st.success(f'Data saved to the database on Server B with index: {index[:-2]}')
|
17 |
else:
|
18 |
st.error('Error saving data')
|
|
|
13 |
|
14 |
if response.status_code == 200:
|
15 |
index = response.text # Retrieve the index from the response
|
16 |
+
st.success(f'Data saved to the database on Server B with index: {index}')#{index[:-2]}')
|
17 |
else:
|
18 |
st.error('Error saving data')
|