fuhsiao418 commited on
Commit
f6b2292
·
1 Parent(s): b60a109
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ def main(file, ext_threshold, article_type):
23
 
24
  result = ''
25
  for key, sec in zip(['I','M','R','D'], ['Introduction', 'Methods', 'Results', 'Discussion/Conclusion']):
26
- result += f"{sec}\n\n{abstr[key]}\n"
27
 
28
  return result
29
 
 
23
 
24
  result = ''
25
  for key, sec in zip(['I','M','R','D'], ['Introduction', 'Methods', 'Results', 'Discussion/Conclusion']):
26
+ result += f"{sec}\n{abstr[key]}\n\n"
27
 
28
  return result
29