reviewer-arena / file_utils.py
openreviewer's picture
Upload folder using huggingface_hub
25f01d1 verified
raw
history blame
No virus
103 Bytes
def read_file(file_path):
with open(file_path, 'r', encoding='utf-8') as f:
return f.read()