4 lines
87 B
Python
4 lines
87 B
Python
def parse(filename: str) -> str:
|
|
with open(filename) as f:
|
|
return f.read()
|