Velocity/core/files.py

5 lines
98 B
Python
Raw Normal View History

2022-03-15 22:12:52 +00:00
def open_file(file):
with open(file) as f:
lines = f.readlines()
return lines