Spaces:
Runtime error
Runtime error
def load_page(path): | |
with open(path, "r") as file: | |
html_text = file.read() | |
return html_text | |
def load_page(path): | |
with open(path, "r") as file: | |
html_text = file.read() | |
return html_text | |