in envelope-encryption-sample/python-cli/cli.py [0:0]
def read_text_file(file_path: str) -> str:
"""
Read a simple text file.
Parameters:
file_path (str): The path to the file where the desired text is stored.
Returns:
str: The text content of the file.
"""
file = open(file_path, "r")
return file.read()