gmedin commited on
Commit
4622e0f
·
verified ·
1 Parent(s): afb7de3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -208,7 +208,7 @@ start_node = st.text_input(
208
  )
209
 
210
  try:
211
- start_node = int(start_node)
212
  except ValueError:
213
  st.error("Please enter a valid numeric content ID.")
214
  st.stop()
 
208
  )
209
 
210
  try:
211
+ start_node = str(start_node)
212
  except ValueError:
213
  st.error("Please enter a valid numeric content ID.")
214
  st.stop()