acecalisto3 commited on
Commit
923ad2e
·
verified ·
1 Parent(s): d7e93db

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -282,7 +282,7 @@ with gr.Blocks() as demo:
282
  def on_start_click(target_urls_str, storage_loc, feed_enabled):
283
  global history, url_monitoring_intervals
284
  try:
285
- target_urls = [url.strip() for url.strip() in target_urls_str.split(",")]
286
  if not all(target_urls):
287
  return "Please enter valid URLs.", history
288
 
 
282
  def on_start_click(target_urls_str, storage_loc, feed_enabled):
283
  global history, url_monitoring_intervals
284
  try:
285
+ target_urls = [url.strip() for url in target_urls_str.split(",")]
286
  if not all(target_urls):
287
  return "Please enter valid URLs.", history
288