Velocity/core/files.py
2022-03-17 21:47:19 +00:00

5 lines
104 B
Python

def open_file(file_name):
with open(file_name) as f:
lines = f.readlines()
return lines