MESReport / utils /utils.py
ChenyuRabbitLove's picture
refactor: add utils
de7f21d
raw
history blame
No virus
146 Bytes
def get_content(file_name: str) -> str:
with open(file_name, "r", encoding="utf-8") as file:
content = file.read()
return content