astro21 commited on
Commit
2402620
·
1 Parent(s): 9c7c7dd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -29,6 +29,7 @@ def summarize_text(input_text):
29
 
30
  def summarize_text_file(file):
31
  if file is not None:
 
32
  content = file.read().decode("utf-8")
33
  return summarize_text(content)
34
 
 
29
 
30
  def summarize_text_file(file):
31
  if file is not None:
32
+ print(file)
33
  content = file.read().decode("utf-8")
34
  return summarize_text(content)
35