Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
|