mehmet0001 commited on
Commit
b1cc502
·
verified ·
1 Parent(s): 5b1fcd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ if st.session_state.stage == "crawl-input":
24
  config = st.text_area("Enter the start URL and the limit of crawling (in this format : URL,limit):")
25
  config_btn = st.button("Start crawling!")
26
 
27
- if config and config_btn and not st.session_state.stage == "remove-crawl":
28
  start = config.split(",")[0]
29
  limit = int(config.split(",")[1])
30
 
 
24
  config = st.text_area("Enter the start URL and the limit of crawling (in this format : URL,limit):")
25
  config_btn = st.button("Start crawling!")
26
 
27
+ if config and config_btn and not (st.session_state.stage == "remove-crawl"):
28
  start = config.split(",")[0]
29
  limit = int(config.split(",")[1])
30