merve HF staff commited on
Commit
7c259fa
1 Parent(s): c615442

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -69,9 +69,7 @@ def inference(pdf_file, pdf_link):
69
 
70
 
71
  content = sequence.replace(r'\(', '$').replace(r'\)', '$').replace(r'\[', '$$').replace(r'\]', '$$')
72
-
73
-
74
- with open(f"{os.getcwd()}/output.md","w+") as f:
75
  f.write(content)
76
  f.close()
77
 
 
69
 
70
 
71
  content = sequence.replace(r'\(', '$').replace(r'\)', '$').replace(r'\[', '$$').replace(r'\]', '$$')
72
+ with open(f"{os.getcwd()}/output.md","w+") as f:
 
 
73
  f.write(content)
74
  f.close()
75