search-assistant / utils.py
arabellastrange's picture
Add application file
6855b1e
raw
history blame
100 Bytes
def read_file(path):
txt = open(path, "r")
file = txt.read()
txt.close()
return file