pane2k's picture
Upload folder using huggingface_hub
7e4b742 verified
raw
history blame
146 Bytes
def get_user_list(file_path):
with open(file_path, 'r') as file:
user_list = [line.strip() for line in file]
return user_list