dysnomia-chat-log/common.py
2024-08-23 17:29:53 -04:00

10 lines
No EOL
251 B
Python

def read_file_to_list(filename):
try:
lines = []
with open(filename, 'r') as f:
for line in f.readlines():
lines.append(line.strip())
return lines
except FileNotFoundError:
return []