acecalisto3 commited on
Commit
983deb7
·
verified ·
1 Parent(s): 1780aff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -310,7 +310,7 @@ with gr.Blocks() as demo:
310
  def on_start_click(target_urls_str: str, storage_loc: str, feed_enabled: bool):
311
  global history, url_monitoring_intervals
312
  try:
313
- target_urls = [url.strip() for url.strip() in target_urls_str.split(",")]
314
  if not all(target_urls):
315
  return "Please enter valid URLs.", history
316
 
 
310
  def on_start_click(target_urls_str: str, storage_loc: str, feed_enabled: bool):
311
  global history, url_monitoring_intervals
312
  try:
313
+ target_urls = [url.strip() for url in target_urls_str.split(",")]
314
  if not all(target_urls):
315
  return "Please enter valid URLs.", history
316