robertselvam commited on
Commit
449d0b9
1 Parent(s): 5ed08f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -10,9 +10,13 @@ from incompletesentencefinder import IncompleteSentenceFinder
10
  from aggressive_content_finder import AggressiveContentFinder
11
  import gradio as gr
12
 
 
13
  def file_output_fn(file_path):
14
  file_path = file_path.name
15
- print(file_path)
 
 
 
16
  return file_path
17
 
18
 
 
10
  from aggressive_content_finder import AggressiveContentFinder
11
  import gradio as gr
12
 
13
+ overall_filepath = ''
14
  def file_output_fn(file_path):
15
  file_path = file_path.name
16
+ global overall_filepath
17
+ print("before",file_path)
18
+ overall_filepath = file_path
19
+ print("after",overall_filepath)
20
  return file_path
21
 
22