push app
Browse files
app.py
CHANGED
|
@@ -120,8 +120,9 @@ if "img" in st.session_state:
|
|
| 120 |
st.session_state.is_removing_dot = True
|
| 121 |
else:
|
| 122 |
st.session_state.coords_list.append(new_coord)
|
| 123 |
-
st.session_state.is_removing_dot = False
|
| 124 |
st.rerun()
|
|
|
|
|
|
|
| 125 |
|
| 126 |
st.write("Coordinates:", st.session_state.get("coords"))
|
| 127 |
|
|
|
|
| 120 |
st.session_state.is_removing_dot = True
|
| 121 |
else:
|
| 122 |
st.session_state.coords_list.append(new_coord)
|
|
|
|
| 123 |
st.rerun()
|
| 124 |
+
else:
|
| 125 |
+
st.session_state.is_removing_dot = False
|
| 126 |
|
| 127 |
st.write("Coordinates:", st.session_state.get("coords"))
|
| 128 |
|