Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ def get_word_frequency(text):
|
|
| 16 |
return word_frequency
|
| 17 |
|
| 18 |
# Load the markdown file
|
| 19 |
-
with open('
|
| 20 |
text = file.read()
|
| 21 |
|
| 22 |
# Parse the markdown using the markdown library
|
|
|
|
| 16 |
return word_frequency
|
| 17 |
|
| 18 |
# Load the markdown file
|
| 19 |
+
with open('Setup.md', 'r') as file:
|
| 20 |
text = file.read()
|
| 21 |
|
| 22 |
# Parse the markdown using the markdown library
|