File size: 146 Bytes
de7f21d
 
 
 
1
2
3
4
5
def get_content(file_name: str) -> str:
    with open(file_name, "r", encoding="utf-8") as file:
        content = file.read()
    return content