def get_content(file_name: str) -> str: with open(file_name, "r", encoding="utf-8") as file: content = file.read() return content